sctp: return error if the asoc has been peeled off in sctp_wait_for_sndbuf
[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 *asoc, 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                 /* sk can be changed by peel off when waiting for buf. */
1915                 err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
1916                 if (err)
1917                         goto out_free;
1918         }
1919
1920         /* If an address is passed with the sendto/sendmsg call, it is used
1921          * to override the primary destination address in the TCP model, or
1922          * when SCTP_ADDR_OVER flag is set in the UDP model.
1923          */
1924         if ((sctp_style(sk, TCP) && msg_name) ||
1925             (sinfo_flags & SCTP_ADDR_OVER)) {
1926                 chunk_tp = sctp_assoc_lookup_paddr(asoc, &to);
1927                 if (!chunk_tp) {
1928                         err = -EINVAL;
1929                         goto out_free;
1930                 }
1931         } else
1932                 chunk_tp = NULL;
1933
1934         /* Auto-connect, if we aren't connected already. */
1935         if (sctp_state(asoc, CLOSED)) {
1936                 err = sctp_primitive_ASSOCIATE(asoc, NULL);
1937                 if (err < 0)
1938                         goto out_free;
1939                 wait_connect = true;
1940                 SCTP_DEBUG_PRINTK("We associated primitively.\n");
1941         }
1942
1943         /* Break the message into multiple chunks of maximum size. */
1944         datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len);
1945         if (IS_ERR(datamsg)) {
1946                 err = PTR_ERR(datamsg);
1947                 goto out_free;
1948         }
1949
1950         /* Now send the (possibly) fragmented message. */
1951         list_for_each_entry(chunk, &datamsg->chunks, frag_list) {
1952                 sctp_chunk_hold(chunk);
1953
1954                 /* Do accounting for the write space.  */
1955                 sctp_set_owner_w(chunk);
1956
1957                 chunk->transport = chunk_tp;
1958         }
1959
1960         /* Send it to the lower layers.  Note:  all chunks
1961          * must either fail or succeed.   The lower layer
1962          * works that way today.  Keep it that way or this
1963          * breaks.
1964          */
1965         err = sctp_primitive_SEND(asoc, datamsg);
1966         /* Did the lower layer accept the chunk? */
1967         if (err)
1968                 sctp_datamsg_free(datamsg);
1969         else
1970                 sctp_datamsg_put(datamsg);
1971
1972         SCTP_DEBUG_PRINTK("We sent primitively.\n");
1973
1974         if (err)
1975                 goto out_free;
1976         else
1977                 err = msg_len;
1978
1979         if (unlikely(wait_connect)) {
1980                 timeo = sock_sndtimeo(sk, msg_flags & MSG_DONTWAIT);
1981                 sctp_wait_for_connect(asoc, &timeo);
1982         }
1983
1984         /* If we are already past ASSOCIATE, the lower
1985          * layers are responsible for association cleanup.
1986          */
1987         goto out_unlock;
1988
1989 out_free:
1990         if (new_asoc) {
1991                 sctp_unhash_established(asoc);
1992                 sctp_association_free(asoc);
1993         }
1994 out_unlock:
1995         sctp_release_sock(sk);
1996
1997 out_nounlock:
1998         return sctp_error(sk, msg_flags, err);
1999
2000 #if 0
2001 do_sock_err:
2002         if (msg_len)
2003                 err = msg_len;
2004         else
2005                 err = sock_error(sk);
2006         goto out;
2007
2008 do_interrupted:
2009         if (msg_len)
2010                 err = msg_len;
2011         goto out;
2012 #endif /* 0 */
2013 }
2014
2015 /* This is an extended version of skb_pull() that removes the data from the
2016  * start of a skb even when data is spread across the list of skb's in the
2017  * frag_list. len specifies the total amount of data that needs to be removed.
2018  * when 'len' bytes could be removed from the skb, it returns 0.
2019  * If 'len' exceeds the total skb length,  it returns the no. of bytes that
2020  * could not be removed.
2021  */
2022 static int sctp_skb_pull(struct sk_buff *skb, int len)
2023 {
2024         struct sk_buff *list;
2025         int skb_len = skb_headlen(skb);
2026         int rlen;
2027
2028         if (len <= skb_len) {
2029                 __skb_pull(skb, len);
2030                 return 0;
2031         }
2032         len -= skb_len;
2033         __skb_pull(skb, skb_len);
2034
2035         skb_walk_frags(skb, list) {
2036                 rlen = sctp_skb_pull(list, len);
2037                 skb->len -= (len-rlen);
2038                 skb->data_len -= (len-rlen);
2039
2040                 if (!rlen)
2041                         return 0;
2042
2043                 len = rlen;
2044         }
2045
2046         return len;
2047 }
2048
2049 /* API 3.1.3  recvmsg() - UDP Style Syntax
2050  *
2051  *  ssize_t recvmsg(int socket, struct msghdr *message,
2052  *                    int flags);
2053  *
2054  *  socket  - the socket descriptor of the endpoint.
2055  *  message - pointer to the msghdr structure which contains a single
2056  *            user message and possibly some ancillary data.
2057  *
2058  *            See Section 5 for complete description of the data
2059  *            structures.
2060  *
2061  *  flags   - flags sent or received with the user message, see Section
2062  *            5 for complete description of the flags.
2063  */
2064 static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *);
2065
2066 SCTP_STATIC int sctp_recvmsg(struct kiocb *iocb, struct sock *sk,
2067                              struct msghdr *msg, size_t len, int noblock,
2068                              int flags, int *addr_len)
2069 {
2070         struct sctp_ulpevent *event = NULL;
2071         struct sctp_sock *sp = sctp_sk(sk);
2072         struct sk_buff *skb;
2073         int copied;
2074         int err = 0;
2075         int skb_len;
2076
2077         SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: "
2078                           "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg,
2079                           "len", len, "knoblauch", noblock,
2080                           "flags", flags, "addr_len", addr_len);
2081
2082         sctp_lock_sock(sk);
2083
2084         if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) {
2085                 err = -ENOTCONN;
2086                 goto out;
2087         }
2088
2089         skb = sctp_skb_recv_datagram(sk, flags, noblock, &err);
2090         if (!skb)
2091                 goto out;
2092
2093         /* Get the total length of the skb including any skb's in the
2094          * frag_list.
2095          */
2096         skb_len = skb->len;
2097
2098         copied = skb_len;
2099         if (copied > len)
2100                 copied = len;
2101
2102         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
2103
2104         event = sctp_skb2event(skb);
2105
2106         if (err)
2107                 goto out_free;
2108
2109         sock_recv_ts_and_drops(msg, sk, skb);
2110         if (sctp_ulpevent_is_notification(event)) {
2111                 msg->msg_flags |= MSG_NOTIFICATION;
2112                 sp->pf->event_msgname(event, msg->msg_name, addr_len);
2113         } else {
2114                 sp->pf->skb_msgname(skb, msg->msg_name, addr_len);
2115         }
2116
2117         /* Check if we allow SCTP_SNDRCVINFO. */
2118         if (sp->subscribe.sctp_data_io_event)
2119                 sctp_ulpevent_read_sndrcvinfo(event, msg);
2120 #if 0
2121         /* FIXME: we should be calling IP/IPv6 layers.  */
2122         if (sk->sk_protinfo.af_inet.cmsg_flags)
2123                 ip_cmsg_recv(msg, skb);
2124 #endif
2125
2126         err = copied;
2127
2128         /* If skb's length exceeds the user's buffer, update the skb and
2129          * push it back to the receive_queue so that the next call to
2130          * recvmsg() will return the remaining data. Don't set MSG_EOR.
2131          */
2132         if (skb_len > copied) {
2133                 msg->msg_flags &= ~MSG_EOR;
2134                 if (flags & MSG_PEEK)
2135                         goto out_free;
2136                 sctp_skb_pull(skb, copied);
2137                 skb_queue_head(&sk->sk_receive_queue, skb);
2138
2139                 /* When only partial message is copied to the user, increase
2140                  * rwnd by that amount. If all the data in the skb is read,
2141                  * rwnd is updated when the event is freed.
2142                  */
2143                 if (!sctp_ulpevent_is_notification(event))
2144                         sctp_assoc_rwnd_increase(event->asoc, copied);
2145                 goto out;
2146         } else if ((event->msg_flags & MSG_NOTIFICATION) ||
2147                    (event->msg_flags & MSG_EOR))
2148                 msg->msg_flags |= MSG_EOR;
2149         else
2150                 msg->msg_flags &= ~MSG_EOR;
2151
2152 out_free:
2153         if (flags & MSG_PEEK) {
2154                 /* Release the skb reference acquired after peeking the skb in
2155                  * sctp_skb_recv_datagram().
2156                  */
2157                 kfree_skb(skb);
2158         } else {
2159                 /* Free the event which includes releasing the reference to
2160                  * the owner of the skb, freeing the skb and updating the
2161                  * rwnd.
2162                  */
2163                 sctp_ulpevent_free(event);
2164         }
2165 out:
2166         sctp_release_sock(sk);
2167         return err;
2168 }
2169
2170 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
2171  *
2172  * This option is a on/off flag.  If enabled no SCTP message
2173  * fragmentation will be performed.  Instead if a message being sent
2174  * exceeds the current PMTU size, the message will NOT be sent and
2175  * instead a error will be indicated to the user.
2176  */
2177 static int sctp_setsockopt_disable_fragments(struct sock *sk,
2178                                              char __user *optval,
2179                                              unsigned int optlen)
2180 {
2181         int val;
2182
2183         if (optlen < sizeof(int))
2184                 return -EINVAL;
2185
2186         if (get_user(val, (int __user *)optval))
2187                 return -EFAULT;
2188
2189         sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1;
2190
2191         return 0;
2192 }
2193
2194 static int sctp_setsockopt_events(struct sock *sk, char __user *optval,
2195                                   unsigned int optlen)
2196 {
2197         struct sctp_association *asoc;
2198         struct sctp_ulpevent *event;
2199
2200         if (optlen > sizeof(struct sctp_event_subscribe))
2201                 return -EINVAL;
2202         if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen))
2203                 return -EFAULT;
2204
2205         /*
2206          * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT,
2207          * if there is no data to be sent or retransmit, the stack will
2208          * immediately send up this notification.
2209          */
2210         if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT,
2211                                        &sctp_sk(sk)->subscribe)) {
2212                 asoc = sctp_id2assoc(sk, 0);
2213
2214                 if (asoc && sctp_outq_is_empty(&asoc->outqueue)) {
2215                         event = sctp_ulpevent_make_sender_dry_event(asoc,
2216                                         GFP_ATOMIC);
2217                         if (!event)
2218                                 return -ENOMEM;
2219
2220                         sctp_ulpq_tail_event(&asoc->ulpq, event);
2221                 }
2222         }
2223
2224         return 0;
2225 }
2226
2227 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
2228  *
2229  * This socket option is applicable to the UDP-style socket only.  When
2230  * set it will cause associations that are idle for more than the
2231  * specified number of seconds to automatically close.  An association
2232  * being idle is defined an association that has NOT sent or received
2233  * user data.  The special value of '0' indicates that no automatic
2234  * close of any associations should be performed.  The option expects an
2235  * integer defining the number of seconds of idle time before an
2236  * association is closed.
2237  */
2238 static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval,
2239                                      unsigned int optlen)
2240 {
2241         struct sctp_sock *sp = sctp_sk(sk);
2242
2243         /* Applicable to UDP-style socket only */
2244         if (sctp_style(sk, TCP))
2245                 return -EOPNOTSUPP;
2246         if (optlen != sizeof(int))
2247                 return -EINVAL;
2248         if (copy_from_user(&sp->autoclose, optval, optlen))
2249                 return -EFAULT;
2250
2251         return 0;
2252 }
2253
2254 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
2255  *
2256  * Applications can enable or disable heartbeats for any peer address of
2257  * an association, modify an address's heartbeat interval, force a
2258  * heartbeat to be sent immediately, and adjust the address's maximum
2259  * number of retransmissions sent before an address is considered
2260  * unreachable.  The following structure is used to access and modify an
2261  * address's parameters:
2262  *
2263  *  struct sctp_paddrparams {
2264  *     sctp_assoc_t            spp_assoc_id;
2265  *     struct sockaddr_storage spp_address;
2266  *     uint32_t                spp_hbinterval;
2267  *     uint16_t                spp_pathmaxrxt;
2268  *     uint32_t                spp_pathmtu;
2269  *     uint32_t                spp_sackdelay;
2270  *     uint32_t                spp_flags;
2271  * };
2272  *
2273  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
2274  *                     application, and identifies the association for
2275  *                     this query.
2276  *   spp_address     - This specifies which address is of interest.
2277  *   spp_hbinterval  - This contains the value of the heartbeat interval,
2278  *                     in milliseconds.  If a  value of zero
2279  *                     is present in this field then no changes are to
2280  *                     be made to this parameter.
2281  *   spp_pathmaxrxt  - This contains the maximum number of
2282  *                     retransmissions before this address shall be
2283  *                     considered unreachable. If a  value of zero
2284  *                     is present in this field then no changes are to
2285  *                     be made to this parameter.
2286  *   spp_pathmtu     - When Path MTU discovery is disabled the value
2287  *                     specified here will be the "fixed" path mtu.
2288  *                     Note that if the spp_address field is empty
2289  *                     then all associations on this address will
2290  *                     have this fixed path mtu set upon them.
2291  *
2292  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
2293  *                     the number of milliseconds that sacks will be delayed
2294  *                     for. This value will apply to all addresses of an
2295  *                     association if the spp_address field is empty. Note
2296  *                     also, that if delayed sack is enabled and this
2297  *                     value is set to 0, no change is made to the last
2298  *                     recorded delayed sack timer value.
2299  *
2300  *   spp_flags       - These flags are used to control various features
2301  *                     on an association. The flag field may contain
2302  *                     zero or more of the following options.
2303  *
2304  *                     SPP_HB_ENABLE  - Enable heartbeats on the
2305  *                     specified address. Note that if the address
2306  *                     field is empty all addresses for the association
2307  *                     have heartbeats enabled upon them.
2308  *
2309  *                     SPP_HB_DISABLE - Disable heartbeats on the
2310  *                     speicifed address. Note that if the address
2311  *                     field is empty all addresses for the association
2312  *                     will have their heartbeats disabled. Note also
2313  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
2314  *                     mutually exclusive, only one of these two should
2315  *                     be specified. Enabling both fields will have
2316  *                     undetermined results.
2317  *
2318  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
2319  *                     to be made immediately.
2320  *
2321  *                     SPP_HB_TIME_IS_ZERO - Specify's that the time for
2322  *                     heartbeat delayis to be set to the value of 0
2323  *                     milliseconds.
2324  *
2325  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
2326  *                     discovery upon the specified address. Note that
2327  *                     if the address feild is empty then all addresses
2328  *                     on the association are effected.
2329  *
2330  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
2331  *                     discovery upon the specified address. Note that
2332  *                     if the address feild is empty then all addresses
2333  *                     on the association are effected. Not also that
2334  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
2335  *                     exclusive. Enabling both will have undetermined
2336  *                     results.
2337  *
2338  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
2339  *                     on delayed sack. The time specified in spp_sackdelay
2340  *                     is used to specify the sack delay for this address. Note
2341  *                     that if spp_address is empty then all addresses will
2342  *                     enable delayed sack and take on the sack delay
2343  *                     value specified in spp_sackdelay.
2344  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
2345  *                     off delayed sack. If the spp_address field is blank then
2346  *                     delayed sack is disabled for the entire association. Note
2347  *                     also that this field is mutually exclusive to
2348  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
2349  *                     results.
2350  */
2351 static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params,
2352                                        struct sctp_transport   *trans,
2353                                        struct sctp_association *asoc,
2354                                        struct sctp_sock        *sp,
2355                                        int                      hb_change,
2356                                        int                      pmtud_change,
2357                                        int                      sackdelay_change)
2358 {
2359         int error;
2360
2361         if (params->spp_flags & SPP_HB_DEMAND && trans) {
2362                 error = sctp_primitive_REQUESTHEARTBEAT (trans->asoc, trans);
2363                 if (error)
2364                         return error;
2365         }
2366
2367         /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of
2368          * this field is ignored.  Note also that a value of zero indicates
2369          * the current setting should be left unchanged.
2370          */
2371         if (params->spp_flags & SPP_HB_ENABLE) {
2372
2373                 /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is
2374                  * set.  This lets us use 0 value when this flag
2375                  * is set.
2376                  */
2377                 if (params->spp_flags & SPP_HB_TIME_IS_ZERO)
2378                         params->spp_hbinterval = 0;
2379
2380                 if (params->spp_hbinterval ||
2381                     (params->spp_flags & SPP_HB_TIME_IS_ZERO)) {
2382                         if (trans) {
2383                                 trans->hbinterval =
2384                                     msecs_to_jiffies(params->spp_hbinterval);
2385                         } else if (asoc) {
2386                                 asoc->hbinterval =
2387                                     msecs_to_jiffies(params->spp_hbinterval);
2388                         } else {
2389                                 sp->hbinterval = params->spp_hbinterval;
2390                         }
2391                 }
2392         }
2393
2394         if (hb_change) {
2395                 if (trans) {
2396                         trans->param_flags =
2397                                 (trans->param_flags & ~SPP_HB) | hb_change;
2398                 } else if (asoc) {
2399                         asoc->param_flags =
2400                                 (asoc->param_flags & ~SPP_HB) | hb_change;
2401                 } else {
2402                         sp->param_flags =
2403                                 (sp->param_flags & ~SPP_HB) | hb_change;
2404                 }
2405         }
2406
2407         /* When Path MTU discovery is disabled the value specified here will
2408          * be the "fixed" path mtu (i.e. the value of the spp_flags field must
2409          * include the flag SPP_PMTUD_DISABLE for this field to have any
2410          * effect).
2411          */
2412         if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) {
2413                 if (trans) {
2414                         trans->pathmtu = params->spp_pathmtu;
2415                         sctp_assoc_sync_pmtu(asoc);
2416                 } else if (asoc) {
2417                         asoc->pathmtu = params->spp_pathmtu;
2418                         sctp_frag_point(asoc, params->spp_pathmtu);
2419                 } else {
2420                         sp->pathmtu = params->spp_pathmtu;
2421                 }
2422         }
2423
2424         if (pmtud_change) {
2425                 if (trans) {
2426                         int update = (trans->param_flags & SPP_PMTUD_DISABLE) &&
2427                                 (params->spp_flags & SPP_PMTUD_ENABLE);
2428                         trans->param_flags =
2429                                 (trans->param_flags & ~SPP_PMTUD) | pmtud_change;
2430                         if (update) {
2431                                 sctp_transport_pmtu(trans, sctp_opt2sk(sp));
2432                                 sctp_assoc_sync_pmtu(asoc);
2433                         }
2434                 } else if (asoc) {
2435                         asoc->param_flags =
2436                                 (asoc->param_flags & ~SPP_PMTUD) | pmtud_change;
2437                 } else {
2438                         sp->param_flags =
2439                                 (sp->param_flags & ~SPP_PMTUD) | pmtud_change;
2440                 }
2441         }
2442
2443         /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the
2444          * value of this field is ignored.  Note also that a value of zero
2445          * indicates the current setting should be left unchanged.
2446          */
2447         if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) {
2448                 if (trans) {
2449                         trans->sackdelay =
2450                                 msecs_to_jiffies(params->spp_sackdelay);
2451                 } else if (asoc) {
2452                         asoc->sackdelay =
2453                                 msecs_to_jiffies(params->spp_sackdelay);
2454                 } else {
2455                         sp->sackdelay = params->spp_sackdelay;
2456                 }
2457         }
2458
2459         if (sackdelay_change) {
2460                 if (trans) {
2461                         trans->param_flags =
2462                                 (trans->param_flags & ~SPP_SACKDELAY) |
2463                                 sackdelay_change;
2464                 } else if (asoc) {
2465                         asoc->param_flags =
2466                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2467                                 sackdelay_change;
2468                 } else {
2469                         sp->param_flags =
2470                                 (sp->param_flags & ~SPP_SACKDELAY) |
2471                                 sackdelay_change;
2472                 }
2473         }
2474
2475         /* Note that a value of zero indicates the current setting should be
2476            left unchanged.
2477          */
2478         if (params->spp_pathmaxrxt) {
2479                 if (trans) {
2480                         trans->pathmaxrxt = params->spp_pathmaxrxt;
2481                 } else if (asoc) {
2482                         asoc->pathmaxrxt = params->spp_pathmaxrxt;
2483                 } else {
2484                         sp->pathmaxrxt = params->spp_pathmaxrxt;
2485                 }
2486         }
2487
2488         return 0;
2489 }
2490
2491 static int sctp_setsockopt_peer_addr_params(struct sock *sk,
2492                                             char __user *optval,
2493                                             unsigned int optlen)
2494 {
2495         struct sctp_paddrparams  params;
2496         struct sctp_transport   *trans = NULL;
2497         struct sctp_association *asoc = NULL;
2498         struct sctp_sock        *sp = sctp_sk(sk);
2499         int error;
2500         int hb_change, pmtud_change, sackdelay_change;
2501
2502         if (optlen != sizeof(struct sctp_paddrparams))
2503                 return - EINVAL;
2504
2505         if (copy_from_user(&params, optval, optlen))
2506                 return -EFAULT;
2507
2508         /* Validate flags and value parameters. */
2509         hb_change        = params.spp_flags & SPP_HB;
2510         pmtud_change     = params.spp_flags & SPP_PMTUD;
2511         sackdelay_change = params.spp_flags & SPP_SACKDELAY;
2512
2513         if (hb_change        == SPP_HB ||
2514             pmtud_change     == SPP_PMTUD ||
2515             sackdelay_change == SPP_SACKDELAY ||
2516             params.spp_sackdelay > 500 ||
2517             (params.spp_pathmtu &&
2518              params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT))
2519                 return -EINVAL;
2520
2521         /* If an address other than INADDR_ANY is specified, and
2522          * no transport is found, then the request is invalid.
2523          */
2524         if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
2525                 trans = sctp_addr_id2transport(sk, &params.spp_address,
2526                                                params.spp_assoc_id);
2527                 if (!trans)
2528                         return -EINVAL;
2529         }
2530
2531         /* Get association, if assoc_id != 0 and the socket is a one
2532          * to many style socket, and an association was not found, then
2533          * the id was invalid.
2534          */
2535         asoc = sctp_id2assoc(sk, params.spp_assoc_id);
2536         if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP))
2537                 return -EINVAL;
2538
2539         /* Heartbeat demand can only be sent on a transport or
2540          * association, but not a socket.
2541          */
2542         if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc)
2543                 return -EINVAL;
2544
2545         /* Process parameters. */
2546         error = sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2547                                             hb_change, pmtud_change,
2548                                             sackdelay_change);
2549
2550         if (error)
2551                 return error;
2552
2553         /* If changes are for association, also apply parameters to each
2554          * transport.
2555          */
2556         if (!trans && asoc) {
2557                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2558                                 transports) {
2559                         sctp_apply_peer_addr_params(&params, trans, asoc, sp,
2560                                                     hb_change, pmtud_change,
2561                                                     sackdelay_change);
2562                 }
2563         }
2564
2565         return 0;
2566 }
2567
2568 /*
2569  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
2570  *
2571  * This option will effect the way delayed acks are performed.  This
2572  * option allows you to get or set the delayed ack time, in
2573  * milliseconds.  It also allows changing the delayed ack frequency.
2574  * Changing the frequency to 1 disables the delayed sack algorithm.  If
2575  * the assoc_id is 0, then this sets or gets the endpoints default
2576  * values.  If the assoc_id field is non-zero, then the set or get
2577  * effects the specified association for the one to many model (the
2578  * assoc_id field is ignored by the one to one model).  Note that if
2579  * sack_delay or sack_freq are 0 when setting this option, then the
2580  * current values will remain unchanged.
2581  *
2582  * struct sctp_sack_info {
2583  *     sctp_assoc_t            sack_assoc_id;
2584  *     uint32_t                sack_delay;
2585  *     uint32_t                sack_freq;
2586  * };
2587  *
2588  * sack_assoc_id -  This parameter, indicates which association the user
2589  *    is performing an action upon.  Note that if this field's value is
2590  *    zero then the endpoints default value is changed (effecting future
2591  *    associations only).
2592  *
2593  * sack_delay -  This parameter contains the number of milliseconds that
2594  *    the user is requesting the delayed ACK timer be set to.  Note that
2595  *    this value is defined in the standard to be between 200 and 500
2596  *    milliseconds.
2597  *
2598  * sack_freq -  This parameter contains the number of packets that must
2599  *    be received before a sack is sent without waiting for the delay
2600  *    timer to expire.  The default value for this is 2, setting this
2601  *    value to 1 will disable the delayed sack algorithm.
2602  */
2603
2604 static int sctp_setsockopt_delayed_ack(struct sock *sk,
2605                                        char __user *optval, unsigned int optlen)
2606 {
2607         struct sctp_sack_info    params;
2608         struct sctp_transport   *trans = NULL;
2609         struct sctp_association *asoc = NULL;
2610         struct sctp_sock        *sp = sctp_sk(sk);
2611
2612         if (optlen == sizeof(struct sctp_sack_info)) {
2613                 if (copy_from_user(&params, optval, optlen))
2614                         return -EFAULT;
2615
2616                 if (params.sack_delay == 0 && params.sack_freq == 0)
2617                         return 0;
2618         } else if (optlen == sizeof(struct sctp_assoc_value)) {
2619                 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
2620                 pr_warn("Use struct sctp_sack_info instead\n");
2621                 if (copy_from_user(&params, optval, optlen))
2622                         return -EFAULT;
2623
2624                 if (params.sack_delay == 0)
2625                         params.sack_freq = 1;
2626                 else
2627                         params.sack_freq = 0;
2628         } else
2629                 return - EINVAL;
2630
2631         /* Validate value parameter. */
2632         if (params.sack_delay > 500)
2633                 return -EINVAL;
2634
2635         /* Get association, if sack_assoc_id != 0 and the socket is a one
2636          * to many style socket, and an association was not found, then
2637          * the id was invalid.
2638          */
2639         asoc = sctp_id2assoc(sk, params.sack_assoc_id);
2640         if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
2641                 return -EINVAL;
2642
2643         if (params.sack_delay) {
2644                 if (asoc) {
2645                         asoc->sackdelay =
2646                                 msecs_to_jiffies(params.sack_delay);
2647                         asoc->param_flags =
2648                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2649                                 SPP_SACKDELAY_ENABLE;
2650                 } else {
2651                         sp->sackdelay = params.sack_delay;
2652                         sp->param_flags =
2653                                 (sp->param_flags & ~SPP_SACKDELAY) |
2654                                 SPP_SACKDELAY_ENABLE;
2655                 }
2656         }
2657
2658         if (params.sack_freq == 1) {
2659                 if (asoc) {
2660                         asoc->param_flags =
2661                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2662                                 SPP_SACKDELAY_DISABLE;
2663                 } else {
2664                         sp->param_flags =
2665                                 (sp->param_flags & ~SPP_SACKDELAY) |
2666                                 SPP_SACKDELAY_DISABLE;
2667                 }
2668         } else if (params.sack_freq > 1) {
2669                 if (asoc) {
2670                         asoc->sackfreq = params.sack_freq;
2671                         asoc->param_flags =
2672                                 (asoc->param_flags & ~SPP_SACKDELAY) |
2673                                 SPP_SACKDELAY_ENABLE;
2674                 } else {
2675                         sp->sackfreq = params.sack_freq;
2676                         sp->param_flags =
2677                                 (sp->param_flags & ~SPP_SACKDELAY) |
2678                                 SPP_SACKDELAY_ENABLE;
2679                 }
2680         }
2681
2682         /* If change is for association, also apply to each transport. */
2683         if (asoc) {
2684                 list_for_each_entry(trans, &asoc->peer.transport_addr_list,
2685                                 transports) {
2686                         if (params.sack_delay) {
2687                                 trans->sackdelay =
2688                                         msecs_to_jiffies(params.sack_delay);
2689                                 trans->param_flags =
2690                                         (trans->param_flags & ~SPP_SACKDELAY) |
2691                                         SPP_SACKDELAY_ENABLE;
2692                         }
2693                         if (params.sack_freq == 1) {
2694                                 trans->param_flags =
2695                                         (trans->param_flags & ~SPP_SACKDELAY) |
2696                                         SPP_SACKDELAY_DISABLE;
2697                         } else if (params.sack_freq > 1) {
2698                                 trans->sackfreq = params.sack_freq;
2699                                 trans->param_flags =
2700                                         (trans->param_flags & ~SPP_SACKDELAY) |
2701                                         SPP_SACKDELAY_ENABLE;
2702                         }
2703                 }
2704         }
2705
2706         return 0;
2707 }
2708
2709 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
2710  *
2711  * Applications can specify protocol parameters for the default association
2712  * initialization.  The option name argument to setsockopt() and getsockopt()
2713  * is SCTP_INITMSG.
2714  *
2715  * Setting initialization parameters is effective only on an unconnected
2716  * socket (for UDP-style sockets only future associations are effected
2717  * by the change).  With TCP-style sockets, this option is inherited by
2718  * sockets derived from a listener socket.
2719  */
2720 static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen)
2721 {
2722         struct sctp_initmsg sinit;
2723         struct sctp_sock *sp = sctp_sk(sk);
2724
2725         if (optlen != sizeof(struct sctp_initmsg))
2726                 return -EINVAL;
2727         if (copy_from_user(&sinit, optval, optlen))
2728                 return -EFAULT;
2729
2730         if (sinit.sinit_num_ostreams)
2731                 sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams;
2732         if (sinit.sinit_max_instreams)
2733                 sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams;
2734         if (sinit.sinit_max_attempts)
2735                 sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts;
2736         if (sinit.sinit_max_init_timeo)
2737                 sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo;
2738
2739         return 0;
2740 }
2741
2742 /*
2743  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
2744  *
2745  *   Applications that wish to use the sendto() system call may wish to
2746  *   specify a default set of parameters that would normally be supplied
2747  *   through the inclusion of ancillary data.  This socket option allows
2748  *   such an application to set the default sctp_sndrcvinfo structure.
2749  *   The application that wishes to use this socket option simply passes
2750  *   in to this call the sctp_sndrcvinfo structure defined in Section
2751  *   5.2.2) The input parameters accepted by this call include
2752  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
2753  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
2754  *   to this call if the caller is using the UDP model.
2755  */
2756 static int sctp_setsockopt_default_send_param(struct sock *sk,
2757                                               char __user *optval,
2758                                               unsigned int optlen)
2759 {
2760         struct sctp_sndrcvinfo info;
2761         struct sctp_association *asoc;
2762         struct sctp_sock *sp = sctp_sk(sk);
2763
2764         if (optlen != sizeof(struct sctp_sndrcvinfo))
2765                 return -EINVAL;
2766         if (copy_from_user(&info, optval, optlen))
2767                 return -EFAULT;
2768
2769         asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
2770         if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
2771                 return -EINVAL;
2772
2773         if (asoc) {
2774                 asoc->default_stream = info.sinfo_stream;
2775                 asoc->default_flags = info.sinfo_flags;
2776                 asoc->default_ppid = info.sinfo_ppid;
2777                 asoc->default_context = info.sinfo_context;
2778                 asoc->default_timetolive = info.sinfo_timetolive;
2779         } else {
2780                 sp->default_stream = info.sinfo_stream;
2781                 sp->default_flags = info.sinfo_flags;
2782                 sp->default_ppid = info.sinfo_ppid;
2783                 sp->default_context = info.sinfo_context;
2784                 sp->default_timetolive = info.sinfo_timetolive;
2785         }
2786
2787         return 0;
2788 }
2789
2790 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
2791  *
2792  * Requests that the local SCTP stack use the enclosed peer address as
2793  * the association primary.  The enclosed address must be one of the
2794  * association peer's addresses.
2795  */
2796 static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval,
2797                                         unsigned int optlen)
2798 {
2799         struct sctp_prim prim;
2800         struct sctp_transport *trans;
2801
2802         if (optlen != sizeof(struct sctp_prim))
2803                 return -EINVAL;
2804
2805         if (copy_from_user(&prim, optval, sizeof(struct sctp_prim)))
2806                 return -EFAULT;
2807
2808         trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id);
2809         if (!trans)
2810                 return -EINVAL;
2811
2812         sctp_assoc_set_primary(trans->asoc, trans);
2813
2814         return 0;
2815 }
2816
2817 /*
2818  * 7.1.5 SCTP_NODELAY
2819  *
2820  * Turn on/off any Nagle-like algorithm.  This means that packets are
2821  * generally sent as soon as possible and no unnecessary delays are
2822  * introduced, at the cost of more packets in the network.  Expects an
2823  *  integer boolean flag.
2824  */
2825 static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval,
2826                                    unsigned int optlen)
2827 {
2828         int val;
2829
2830         if (optlen < sizeof(int))
2831                 return -EINVAL;
2832         if (get_user(val, (int __user *)optval))
2833                 return -EFAULT;
2834
2835         sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1;
2836         return 0;
2837 }
2838
2839 /*
2840  *
2841  * 7.1.1 SCTP_RTOINFO
2842  *
2843  * The protocol parameters used to initialize and bound retransmission
2844  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
2845  * and modify these parameters.
2846  * All parameters are time values, in milliseconds.  A value of 0, when
2847  * modifying the parameters, indicates that the current value should not
2848  * be changed.
2849  *
2850  */
2851 static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen)
2852 {
2853         struct sctp_rtoinfo rtoinfo;
2854         struct sctp_association *asoc;
2855
2856         if (optlen != sizeof (struct sctp_rtoinfo))
2857                 return -EINVAL;
2858
2859         if (copy_from_user(&rtoinfo, optval, optlen))
2860                 return -EFAULT;
2861
2862         asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
2863
2864         /* Set the values to the specific association */
2865         if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
2866                 return -EINVAL;
2867
2868         if (asoc) {
2869                 if (rtoinfo.srto_initial != 0)
2870                         asoc->rto_initial =
2871                                 msecs_to_jiffies(rtoinfo.srto_initial);
2872                 if (rtoinfo.srto_max != 0)
2873                         asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max);
2874                 if (rtoinfo.srto_min != 0)
2875                         asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min);
2876         } else {
2877                 /* If there is no association or the association-id = 0
2878                  * set the values to the endpoint.
2879                  */
2880                 struct sctp_sock *sp = sctp_sk(sk);
2881
2882                 if (rtoinfo.srto_initial != 0)
2883                         sp->rtoinfo.srto_initial = rtoinfo.srto_initial;
2884                 if (rtoinfo.srto_max != 0)
2885                         sp->rtoinfo.srto_max = rtoinfo.srto_max;
2886                 if (rtoinfo.srto_min != 0)
2887                         sp->rtoinfo.srto_min = rtoinfo.srto_min;
2888         }
2889
2890         return 0;
2891 }
2892
2893 /*
2894  *
2895  * 7.1.2 SCTP_ASSOCINFO
2896  *
2897  * This option is used to tune the maximum retransmission attempts
2898  * of the association.
2899  * Returns an error if the new association retransmission value is
2900  * greater than the sum of the retransmission value  of the peer.
2901  * See [SCTP] for more information.
2902  *
2903  */
2904 static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen)
2905 {
2906
2907         struct sctp_assocparams assocparams;
2908         struct sctp_association *asoc;
2909
2910         if (optlen != sizeof(struct sctp_assocparams))
2911                 return -EINVAL;
2912         if (copy_from_user(&assocparams, optval, optlen))
2913                 return -EFAULT;
2914
2915         asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
2916
2917         if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
2918                 return -EINVAL;
2919
2920         /* Set the values to the specific association */
2921         if (asoc) {
2922                 if (assocparams.sasoc_asocmaxrxt != 0) {
2923                         __u32 path_sum = 0;
2924                         int   paths = 0;
2925                         struct sctp_transport *peer_addr;
2926
2927                         list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list,
2928                                         transports) {
2929                                 path_sum += peer_addr->pathmaxrxt;
2930                                 paths++;
2931                         }
2932
2933                         /* Only validate asocmaxrxt if we have more than
2934                          * one path/transport.  We do this because path
2935                          * retransmissions are only counted when we have more
2936                          * then one path.
2937                          */
2938                         if (paths > 1 &&
2939                             assocparams.sasoc_asocmaxrxt > path_sum)
2940                                 return -EINVAL;
2941
2942                         asoc->max_retrans = assocparams.sasoc_asocmaxrxt;
2943                 }
2944
2945                 if (assocparams.sasoc_cookie_life != 0) {
2946                         asoc->cookie_life.tv_sec =
2947                                         assocparams.sasoc_cookie_life / 1000;
2948                         asoc->cookie_life.tv_usec =
2949                                         (assocparams.sasoc_cookie_life % 1000)
2950                                         * 1000;
2951                 }
2952         } else {
2953                 /* Set the values to the endpoint */
2954                 struct sctp_sock *sp = sctp_sk(sk);
2955
2956                 if (assocparams.sasoc_asocmaxrxt != 0)
2957                         sp->assocparams.sasoc_asocmaxrxt =
2958                                                 assocparams.sasoc_asocmaxrxt;
2959                 if (assocparams.sasoc_cookie_life != 0)
2960                         sp->assocparams.sasoc_cookie_life =
2961                                                 assocparams.sasoc_cookie_life;
2962         }
2963         return 0;
2964 }
2965
2966 /*
2967  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
2968  *
2969  * This socket option is a boolean flag which turns on or off mapped V4
2970  * addresses.  If this option is turned on and the socket is type
2971  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
2972  * If this option is turned off, then no mapping will be done of V4
2973  * addresses and a user will receive both PF_INET6 and PF_INET type
2974  * addresses on the socket.
2975  */
2976 static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen)
2977 {
2978         int val;
2979         struct sctp_sock *sp = sctp_sk(sk);
2980
2981         if (optlen < sizeof(int))
2982                 return -EINVAL;
2983         if (get_user(val, (int __user *)optval))
2984                 return -EFAULT;
2985         if (val)
2986                 sp->v4mapped = 1;
2987         else
2988                 sp->v4mapped = 0;
2989
2990         return 0;
2991 }
2992
2993 /*
2994  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
2995  * This option will get or set the maximum size to put in any outgoing
2996  * SCTP DATA chunk.  If a message is larger than this size it will be
2997  * fragmented by SCTP into the specified size.  Note that the underlying
2998  * SCTP implementation may fragment into smaller sized chunks when the
2999  * PMTU of the underlying association is smaller than the value set by
3000  * the user.  The default value for this option is '0' which indicates
3001  * the user is NOT limiting fragmentation and only the PMTU will effect
3002  * SCTP's choice of DATA chunk size.  Note also that values set larger
3003  * than the maximum size of an IP datagram will effectively let SCTP
3004  * control fragmentation (i.e. the same as setting this option to 0).
3005  *
3006  * The following structure is used to access and modify this parameter:
3007  *
3008  * struct sctp_assoc_value {
3009  *   sctp_assoc_t assoc_id;
3010  *   uint32_t assoc_value;
3011  * };
3012  *
3013  * assoc_id:  This parameter is ignored for one-to-one style sockets.
3014  *    For one-to-many style sockets this parameter indicates which
3015  *    association the user is performing an action upon.  Note that if
3016  *    this field's value is zero then the endpoints default value is
3017  *    changed (effecting future associations only).
3018  * assoc_value:  This parameter specifies the maximum size in bytes.
3019  */
3020 static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen)
3021 {
3022         struct sctp_assoc_value params;
3023         struct sctp_association *asoc;
3024         struct sctp_sock *sp = sctp_sk(sk);
3025         int val;
3026
3027         if (optlen == sizeof(int)) {
3028                 pr_warn("Use of int in maxseg socket option deprecated\n");
3029                 pr_warn("Use struct sctp_assoc_value instead\n");
3030                 if (copy_from_user(&val, optval, optlen))
3031                         return -EFAULT;
3032                 params.assoc_id = 0;
3033         } else if (optlen == sizeof(struct sctp_assoc_value)) {
3034                 if (copy_from_user(&params, optval, optlen))
3035                         return -EFAULT;
3036                 val = params.assoc_value;
3037         } else
3038                 return -EINVAL;
3039
3040         if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN)))
3041                 return -EINVAL;
3042
3043         asoc = sctp_id2assoc(sk, params.assoc_id);
3044         if (!asoc && params.assoc_id && sctp_style(sk, UDP))
3045                 return -EINVAL;
3046
3047         if (asoc) {
3048                 if (val == 0) {
3049                         val = asoc->pathmtu;
3050                         val -= sp->pf->af->net_header_len;
3051                         val -= sizeof(struct sctphdr) +
3052                                         sizeof(struct sctp_data_chunk);
3053                 }
3054                 asoc->user_frag = val;
3055                 asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu);
3056         } else {
3057                 sp->user_frag = val;
3058         }
3059
3060         return 0;
3061 }
3062
3063
3064 /*
3065  *  7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR)
3066  *
3067  *   Requests that the peer mark the enclosed address as the association
3068  *   primary. The enclosed address must be one of the association's
3069  *   locally bound addresses. The following structure is used to make a
3070  *   set primary request:
3071  */
3072 static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval,
3073                                              unsigned int optlen)
3074 {
3075         struct sctp_sock        *sp;
3076         struct sctp_association *asoc = NULL;
3077         struct sctp_setpeerprim prim;
3078         struct sctp_chunk       *chunk;
3079         struct sctp_af          *af;
3080         int                     err;
3081
3082         sp = sctp_sk(sk);
3083
3084         if (!sctp_addip_enable)
3085                 return -EPERM;
3086
3087         if (optlen != sizeof(struct sctp_setpeerprim))
3088                 return -EINVAL;
3089
3090         if (copy_from_user(&prim, optval, optlen))
3091                 return -EFAULT;
3092
3093         asoc = sctp_id2assoc(sk, prim.sspp_assoc_id);
3094         if (!asoc)
3095                 return -EINVAL;
3096
3097         if (!asoc->peer.asconf_capable)
3098                 return -EPERM;
3099
3100         if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY)
3101                 return -EPERM;
3102
3103         if (!sctp_state(asoc, ESTABLISHED))
3104                 return -ENOTCONN;
3105
3106         af = sctp_get_af_specific(prim.sspp_addr.ss_family);
3107         if (!af)
3108                 return -EINVAL;
3109
3110         if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL))
3111                 return -EADDRNOTAVAIL;
3112
3113         if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr))
3114                 return -EADDRNOTAVAIL;
3115
3116         /* Create an ASCONF chunk with SET_PRIMARY parameter    */
3117         chunk = sctp_make_asconf_set_prim(asoc,
3118                                           (union sctp_addr *)&prim.sspp_addr);
3119         if (!chunk)
3120                 return -ENOMEM;
3121
3122         err = sctp_send_asconf(asoc, chunk);
3123
3124         SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n");
3125
3126         return err;
3127 }
3128
3129 static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval,
3130                                             unsigned int optlen)
3131 {
3132         struct sctp_setadaptation adaptation;
3133
3134         if (optlen != sizeof(struct sctp_setadaptation))
3135                 return -EINVAL;
3136         if (copy_from_user(&adaptation, optval, optlen))
3137                 return -EFAULT;
3138
3139         sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind;
3140
3141         return 0;
3142 }
3143
3144 /*
3145  * 7.1.29.  Set or Get the default context (SCTP_CONTEXT)
3146  *
3147  * The context field in the sctp_sndrcvinfo structure is normally only
3148  * used when a failed message is retrieved holding the value that was
3149  * sent down on the actual send call.  This option allows the setting of
3150  * a default context on an association basis that will be received on
3151  * reading messages from the peer.  This is especially helpful in the
3152  * one-2-many model for an application to keep some reference to an
3153  * internal state machine that is processing messages on the
3154  * association.  Note that the setting of this value only effects
3155  * received messages from the peer and does not effect the value that is
3156  * saved with outbound messages.
3157  */
3158 static int sctp_setsockopt_context(struct sock *sk, char __user *optval,
3159                                    unsigned int optlen)
3160 {
3161         struct sctp_assoc_value params;
3162         struct sctp_sock *sp;
3163         struct sctp_association *asoc;
3164
3165         if (optlen != sizeof(struct sctp_assoc_value))
3166                 return -EINVAL;
3167         if (copy_from_user(&params, optval, optlen))
3168                 return -EFAULT;
3169
3170         sp = sctp_sk(sk);
3171
3172         if (params.assoc_id != 0) {
3173                 asoc = sctp_id2assoc(sk, params.assoc_id);
3174                 if (!asoc)
3175                         return -EINVAL;
3176                 asoc->default_rcv_context = params.assoc_value;
3177         } else {
3178                 sp->default_rcv_context = params.assoc_value;
3179         }
3180
3181         return 0;
3182 }
3183
3184 /*
3185  * 7.1.24.  Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
3186  *
3187  * This options will at a minimum specify if the implementation is doing
3188  * fragmented interleave.  Fragmented interleave, for a one to many
3189  * socket, is when subsequent calls to receive a message may return
3190  * parts of messages from different associations.  Some implementations
3191  * may allow you to turn this value on or off.  If so, when turned off,
3192  * no fragment interleave will occur (which will cause a head of line
3193  * blocking amongst multiple associations sharing the same one to many
3194  * socket).  When this option is turned on, then each receive call may
3195  * come from a different association (thus the user must receive data
3196  * with the extended calls (e.g. sctp_recvmsg) to keep track of which
3197  * association each receive belongs to.
3198  *
3199  * This option takes a boolean value.  A non-zero value indicates that
3200  * fragmented interleave is on.  A value of zero indicates that
3201  * fragmented interleave is off.
3202  *
3203  * Note that it is important that an implementation that allows this
3204  * option to be turned on, have it off by default.  Otherwise an unaware
3205  * application using the one to many model may become confused and act
3206  * incorrectly.
3207  */
3208 static int sctp_setsockopt_fragment_interleave(struct sock *sk,
3209                                                char __user *optval,
3210                                                unsigned int optlen)
3211 {
3212         int val;
3213
3214         if (optlen != sizeof(int))
3215                 return -EINVAL;
3216         if (get_user(val, (int __user *)optval))
3217                 return -EFAULT;
3218
3219         sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1;
3220
3221         return 0;
3222 }
3223
3224 /*
3225  * 8.1.21.  Set or Get the SCTP Partial Delivery Point
3226  *       (SCTP_PARTIAL_DELIVERY_POINT)
3227  *
3228  * This option will set or get the SCTP partial delivery point.  This
3229  * point is the size of a message where the partial delivery API will be
3230  * invoked to help free up rwnd space for the peer.  Setting this to a
3231  * lower value will cause partial deliveries to happen more often.  The
3232  * calls argument is an integer that sets or gets the partial delivery
3233  * point.  Note also that the call will fail if the user attempts to set
3234  * this value larger than the socket receive buffer size.
3235  *
3236  * Note that any single message having a length smaller than or equal to
3237  * the SCTP partial delivery point will be delivered in one single read
3238  * call as long as the user provided buffer is large enough to hold the
3239  * message.
3240  */
3241 static int sctp_setsockopt_partial_delivery_point(struct sock *sk,
3242                                                   char __user *optval,
3243                                                   unsigned int optlen)
3244 {
3245         u32 val;
3246
3247         if (optlen != sizeof(u32))
3248                 return -EINVAL;
3249         if (get_user(val, (int __user *)optval))
3250                 return -EFAULT;
3251
3252         /* Note: We double the receive buffer from what the user sets
3253          * it to be, also initial rwnd is based on rcvbuf/2.
3254          */
3255         if (val > (sk->sk_rcvbuf >> 1))
3256                 return -EINVAL;
3257
3258         sctp_sk(sk)->pd_point = val;
3259
3260         return 0; /* is this the right error code? */
3261 }
3262
3263 /*
3264  * 7.1.28.  Set or Get the maximum burst (SCTP_MAX_BURST)
3265  *
3266  * This option will allow a user to change the maximum burst of packets
3267  * that can be emitted by this association.  Note that the default value
3268  * is 4, and some implementations may restrict this setting so that it
3269  * can only be lowered.
3270  *
3271  * NOTE: This text doesn't seem right.  Do this on a socket basis with
3272  * future associations inheriting the socket value.
3273  */
3274 static int sctp_setsockopt_maxburst(struct sock *sk,
3275                                     char __user *optval,
3276                                     unsigned int optlen)
3277 {
3278         struct sctp_assoc_value params;
3279         struct sctp_sock *sp;
3280         struct sctp_association *asoc;
3281         int val;
3282         int assoc_id = 0;
3283
3284         if (optlen == sizeof(int)) {
3285                 pr_warn("Use of int in max_burst socket option deprecated\n");
3286                 pr_warn("Use struct sctp_assoc_value instead\n");
3287                 if (copy_from_user(&val, optval, optlen))
3288                         return -EFAULT;
3289         } else if (optlen == sizeof(struct sctp_assoc_value)) {
3290                 if (copy_from_user(&params, optval, optlen))
3291                         return -EFAULT;
3292                 val = params.assoc_value;
3293                 assoc_id = params.assoc_id;
3294         } else
3295                 return -EINVAL;
3296
3297         sp = sctp_sk(sk);
3298
3299         if (assoc_id != 0) {
3300                 asoc = sctp_id2assoc(sk, assoc_id);
3301                 if (!asoc)
3302                         return -EINVAL;
3303                 asoc->max_burst = val;
3304         } else
3305                 sp->max_burst = val;
3306
3307         return 0;
3308 }
3309
3310 /*
3311  * 7.1.18.  Add a chunk that must be authenticated (SCTP_AUTH_CHUNK)
3312  *
3313  * This set option adds a chunk type that the user is requesting to be
3314  * received only in an authenticated way.  Changes to the list of chunks
3315  * will only effect future associations on the socket.
3316  */
3317 static int sctp_setsockopt_auth_chunk(struct sock *sk,
3318                                       char __user *optval,
3319                                       unsigned int optlen)
3320 {
3321         struct sctp_authchunk val;
3322
3323         if (!sctp_auth_enable)
3324                 return -EACCES;
3325
3326         if (optlen != sizeof(struct sctp_authchunk))
3327                 return -EINVAL;
3328         if (copy_from_user(&val, optval, optlen))
3329                 return -EFAULT;
3330
3331         switch (val.sauth_chunk) {
3332         case SCTP_CID_INIT:
3333         case SCTP_CID_INIT_ACK:
3334         case SCTP_CID_SHUTDOWN_COMPLETE:
3335         case SCTP_CID_AUTH:
3336                 return -EINVAL;
3337         }
3338
3339         /* add this chunk id to the endpoint */
3340         return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk);
3341 }
3342
3343 /*
3344  * 7.1.19.  Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT)
3345  *
3346  * This option gets or sets the list of HMAC algorithms that the local
3347  * endpoint requires the peer to use.
3348  */
3349 static int sctp_setsockopt_hmac_ident(struct sock *sk,
3350                                       char __user *optval,
3351                                       unsigned int optlen)
3352 {
3353         struct sctp_hmacalgo *hmacs;
3354         u32 idents;
3355         int err;
3356
3357         if (!sctp_auth_enable)
3358                 return -EACCES;
3359
3360         if (optlen < sizeof(struct sctp_hmacalgo))
3361                 return -EINVAL;
3362
3363         hmacs= memdup_user(optval, optlen);
3364         if (IS_ERR(hmacs))
3365                 return PTR_ERR(hmacs);
3366
3367         idents = hmacs->shmac_num_idents;
3368         if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS ||
3369             (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) {
3370                 err = -EINVAL;
3371                 goto out;
3372         }
3373
3374         err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs);
3375 out:
3376         kfree(hmacs);
3377         return err;
3378 }
3379
3380 /*
3381  * 7.1.20.  Set a shared key (SCTP_AUTH_KEY)
3382  *
3383  * This option will set a shared secret key which is used to build an
3384  * association shared key.
3385  */
3386 static int sctp_setsockopt_auth_key(struct sock *sk,
3387                                     char __user *optval,
3388                                     unsigned int optlen)
3389 {
3390         struct sctp_authkey *authkey;
3391         struct sctp_association *asoc;
3392         int ret;
3393
3394         if (!sctp_auth_enable)
3395                 return -EACCES;
3396
3397         if (optlen <= sizeof(struct sctp_authkey))
3398                 return -EINVAL;
3399
3400         authkey= memdup_user(optval, optlen);
3401         if (IS_ERR(authkey))
3402                 return PTR_ERR(authkey);
3403
3404         if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) {
3405                 ret = -EINVAL;
3406                 goto out;
3407         }
3408
3409         asoc = sctp_id2assoc(sk, authkey->sca_assoc_id);
3410         if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) {
3411                 ret = -EINVAL;
3412                 goto out;
3413         }
3414
3415         ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey);
3416 out:
3417         kzfree(authkey);
3418         return ret;
3419 }
3420
3421 /*
3422  * 7.1.21.  Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY)
3423  *
3424  * This option will get or set the active shared key to be used to build
3425  * the association shared key.
3426  */
3427 static int sctp_setsockopt_active_key(struct sock *sk,
3428                                       char __user *optval,
3429                                       unsigned int optlen)
3430 {
3431         struct sctp_authkeyid val;
3432         struct sctp_association *asoc;
3433
3434         if (!sctp_auth_enable)
3435                 return -EACCES;
3436
3437         if (optlen != sizeof(struct sctp_authkeyid))
3438                 return -EINVAL;
3439         if (copy_from_user(&val, optval, optlen))
3440                 return -EFAULT;
3441
3442         asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3443         if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3444                 return -EINVAL;
3445
3446         return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc,
3447                                         val.scact_keynumber);
3448 }
3449
3450 /*
3451  * 7.1.22.  Delete a shared key (SCTP_AUTH_DELETE_KEY)
3452  *
3453  * This set option will delete a shared secret key from use.
3454  */
3455 static int sctp_setsockopt_del_key(struct sock *sk,
3456                                    char __user *optval,
3457                                    unsigned int optlen)
3458 {
3459         struct sctp_authkeyid val;
3460         struct sctp_association *asoc;
3461
3462         if (!sctp_auth_enable)
3463                 return -EACCES;
3464
3465         if (optlen != sizeof(struct sctp_authkeyid))
3466                 return -EINVAL;
3467         if (copy_from_user(&val, optval, optlen))
3468                 return -EFAULT;
3469
3470         asoc = sctp_id2assoc(sk, val.scact_assoc_id);
3471         if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
3472                 return -EINVAL;
3473
3474         return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc,
3475                                     val.scact_keynumber);
3476
3477 }
3478
3479 /*
3480  * 8.1.23 SCTP_AUTO_ASCONF
3481  *
3482  * This option will enable or disable the use of the automatic generation of
3483  * ASCONF chunks to add and delete addresses to an existing association.  Note
3484  * that this option has two caveats namely: a) it only affects sockets that
3485  * are bound to all addresses available to the SCTP stack, and b) the system
3486  * administrator may have an overriding control that turns the ASCONF feature
3487  * off no matter what setting the socket option may have.
3488  * This option expects an integer boolean flag, where a non-zero value turns on
3489  * the option, and a zero value turns off the option.
3490  * Note. In this implementation, socket operation overrides default parameter
3491  * being set by sysctl as well as FreeBSD implementation
3492  */
3493 static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval,
3494                                         unsigned int optlen)
3495 {
3496         int val;
3497         struct sctp_sock *sp = sctp_sk(sk);
3498
3499         if (optlen < sizeof(int))
3500                 return -EINVAL;
3501         if (get_user(val, (int __user *)optval))
3502                 return -EFAULT;
3503         if (!sctp_is_ep_boundall(sk) && val)
3504                 return -EINVAL;
3505         if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf))
3506                 return 0;
3507
3508         spin_lock_bh(&sctp_globals.addr_wq_lock);
3509         if (val == 0 && sp->do_auto_asconf) {
3510                 list_del(&sp->auto_asconf_list);
3511                 sp->do_auto_asconf = 0;
3512         } else if (val && !sp->do_auto_asconf) {
3513                 list_add_tail(&sp->auto_asconf_list,
3514                     &sctp_auto_asconf_splist);
3515                 sp->do_auto_asconf = 1;
3516         }
3517         spin_unlock_bh(&sctp_globals.addr_wq_lock);
3518         return 0;
3519 }
3520
3521
3522 /* API 6.2 setsockopt(), getsockopt()
3523  *
3524  * Applications use setsockopt() and getsockopt() to set or retrieve
3525  * socket options.  Socket options are used to change the default
3526  * behavior of sockets calls.  They are described in Section 7.
3527  *
3528  * The syntax is:
3529  *
3530  *   ret = getsockopt(int sd, int level, int optname, void __user *optval,
3531  *                    int __user *optlen);
3532  *   ret = setsockopt(int sd, int level, int optname, const void __user *optval,
3533  *                    int optlen);
3534  *
3535  *   sd      - the socket descript.
3536  *   level   - set to IPPROTO_SCTP for all SCTP options.
3537  *   optname - the option name.
3538  *   optval  - the buffer to store the value of the option.
3539  *   optlen  - the size of the buffer.
3540  */
3541 SCTP_STATIC int sctp_setsockopt(struct sock *sk, int level, int optname,
3542                                 char __user *optval, unsigned int optlen)
3543 {
3544         int retval = 0;
3545
3546         SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n",
3547                           sk, optname);
3548
3549         /* I can hardly begin to describe how wrong this is.  This is
3550          * so broken as to be worse than useless.  The API draft
3551          * REALLY is NOT helpful here...  I am not convinced that the
3552          * semantics of setsockopt() with a level OTHER THAN SOL_SCTP
3553          * are at all well-founded.
3554          */
3555         if (level != SOL_SCTP) {
3556                 struct sctp_af *af = sctp_sk(sk)->pf->af;
3557                 retval = af->setsockopt(sk, level, optname, optval, optlen);
3558                 goto out_nounlock;
3559         }
3560
3561         sctp_lock_sock(sk);
3562
3563         switch (optname) {
3564         case SCTP_SOCKOPT_BINDX_ADD:
3565                 /* 'optlen' is the size of the addresses buffer. */
3566                 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3567                                                optlen, SCTP_BINDX_ADD_ADDR);
3568                 break;
3569
3570         case SCTP_SOCKOPT_BINDX_REM:
3571                 /* 'optlen' is the size of the addresses buffer. */
3572                 retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval,
3573                                                optlen, SCTP_BINDX_REM_ADDR);
3574                 break;
3575
3576         case SCTP_SOCKOPT_CONNECTX_OLD:
3577                 /* 'optlen' is the size of the addresses buffer. */
3578                 retval = sctp_setsockopt_connectx_old(sk,
3579                                             (struct sockaddr __user *)optval,
3580                                             optlen);
3581                 break;
3582
3583         case SCTP_SOCKOPT_CONNECTX:
3584                 /* 'optlen' is the size of the addresses buffer. */
3585                 retval = sctp_setsockopt_connectx(sk,
3586                                             (struct sockaddr __user *)optval,
3587                                             optlen);
3588                 break;
3589
3590         case SCTP_DISABLE_FRAGMENTS:
3591                 retval = sctp_setsockopt_disable_fragments(sk, optval, optlen);
3592                 break;
3593
3594         case SCTP_EVENTS:
3595                 retval = sctp_setsockopt_events(sk, optval, optlen);
3596                 break;
3597
3598         case SCTP_AUTOCLOSE:
3599                 retval = sctp_setsockopt_autoclose(sk, optval, optlen);
3600                 break;
3601
3602         case SCTP_PEER_ADDR_PARAMS:
3603                 retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen);
3604                 break;
3605
3606         case SCTP_DELAYED_SACK:
3607                 retval = sctp_setsockopt_delayed_ack(sk, optval, optlen);
3608                 break;
3609         case SCTP_PARTIAL_DELIVERY_POINT:
3610                 retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen);
3611                 break;
3612
3613         case SCTP_INITMSG:
3614                 retval = sctp_setsockopt_initmsg(sk, optval, optlen);
3615                 break;
3616         case SCTP_DEFAULT_SEND_PARAM:
3617                 retval = sctp_setsockopt_default_send_param(sk, optval,
3618                                                             optlen);
3619                 break;
3620         case SCTP_PRIMARY_ADDR:
3621                 retval = sctp_setsockopt_primary_addr(sk, optval, optlen);
3622                 break;
3623         case SCTP_SET_PEER_PRIMARY_ADDR:
3624                 retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen);
3625                 break;
3626         case SCTP_NODELAY:
3627                 retval = sctp_setsockopt_nodelay(sk, optval, optlen);
3628                 break;
3629         case SCTP_RTOINFO:
3630                 retval = sctp_setsockopt_rtoinfo(sk, optval, optlen);
3631                 break;
3632         case SCTP_ASSOCINFO:
3633                 retval = sctp_setsockopt_associnfo(sk, optval, optlen);
3634                 break;
3635         case SCTP_I_WANT_MAPPED_V4_ADDR:
3636                 retval = sctp_setsockopt_mappedv4(sk, optval, optlen);
3637                 break;
3638         case SCTP_MAXSEG:
3639                 retval = sctp_setsockopt_maxseg(sk, optval, optlen);
3640                 break;
3641         case SCTP_ADAPTATION_LAYER:
3642                 retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen);
3643                 break;
3644         case SCTP_CONTEXT:
3645                 retval = sctp_setsockopt_context(sk, optval, optlen);
3646                 break;
3647         case SCTP_FRAGMENT_INTERLEAVE:
3648                 retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen);
3649                 break;
3650         case SCTP_MAX_BURST:
3651                 retval = sctp_setsockopt_maxburst(sk, optval, optlen);
3652                 break;
3653         case SCTP_AUTH_CHUNK:
3654                 retval = sctp_setsockopt_auth_chunk(sk, optval, optlen);
3655                 break;
3656         case SCTP_HMAC_IDENT:
3657                 retval = sctp_setsockopt_hmac_ident(sk, optval, optlen);
3658                 break;
3659         case SCTP_AUTH_KEY:
3660                 retval = sctp_setsockopt_auth_key(sk, optval, optlen);
3661                 break;
3662         case SCTP_AUTH_ACTIVE_KEY:
3663                 retval = sctp_setsockopt_active_key(sk, optval, optlen);
3664                 break;
3665         case SCTP_AUTH_DELETE_KEY:
3666                 retval = sctp_setsockopt_del_key(sk, optval, optlen);
3667                 break;
3668         case SCTP_AUTO_ASCONF:
3669                 retval = sctp_setsockopt_auto_asconf(sk, optval, optlen);
3670                 break;
3671         default:
3672                 retval = -ENOPROTOOPT;
3673                 break;
3674         }
3675
3676         sctp_release_sock(sk);
3677
3678 out_nounlock:
3679         return retval;
3680 }
3681
3682 /* API 3.1.6 connect() - UDP Style Syntax
3683  *
3684  * An application may use the connect() call in the UDP model to initiate an
3685  * association without sending data.
3686  *
3687  * The syntax is:
3688  *
3689  * ret = connect(int sd, const struct sockaddr *nam, socklen_t len);
3690  *
3691  * sd: the socket descriptor to have a new association added to.
3692  *
3693  * nam: the address structure (either struct sockaddr_in or struct
3694  *    sockaddr_in6 defined in RFC2553 [7]).
3695  *
3696  * len: the size of the address.
3697  */
3698 SCTP_STATIC int sctp_connect(struct sock *sk, struct sockaddr *addr,
3699                              int addr_len)
3700 {
3701         int err = 0;
3702         struct sctp_af *af;
3703
3704         sctp_lock_sock(sk);
3705
3706         SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n",
3707                           __func__, sk, addr, addr_len);
3708
3709         /* Validate addr_len before calling common connect/connectx routine. */
3710         af = sctp_get_af_specific(addr->sa_family);
3711         if (!af || addr_len < af->sockaddr_len) {
3712                 err = -EINVAL;
3713         } else {
3714                 /* Pass correct addr len to common routine (so it knows there
3715                  * is only one address being passed.
3716                  */
3717                 err = __sctp_connect(sk, addr, af->sockaddr_len, NULL);
3718         }
3719
3720         sctp_release_sock(sk);
3721         return err;
3722 }
3723
3724 /* FIXME: Write comments. */
3725 SCTP_STATIC int sctp_disconnect(struct sock *sk, int flags)
3726 {
3727         return -EOPNOTSUPP; /* STUB */
3728 }
3729
3730 /* 4.1.4 accept() - TCP Style Syntax
3731  *
3732  * Applications use accept() call to remove an established SCTP
3733  * association from the accept queue of the endpoint.  A new socket
3734  * descriptor will be returned from accept() to represent the newly
3735  * formed association.
3736  */
3737 SCTP_STATIC struct sock *sctp_accept(struct sock *sk, int flags, int *err)
3738 {
3739         struct sctp_sock *sp;
3740         struct sctp_endpoint *ep;
3741         struct sock *newsk = NULL;
3742         struct sctp_association *asoc;
3743         long timeo;
3744         int error = 0;
3745
3746         sctp_lock_sock(sk);
3747
3748         sp = sctp_sk(sk);
3749         ep = sp->ep;
3750
3751         if (!sctp_style(sk, TCP)) {
3752                 error = -EOPNOTSUPP;
3753                 goto out;
3754         }
3755
3756         if (!sctp_sstate(sk, LISTENING)) {
3757                 error = -EINVAL;
3758                 goto out;
3759         }
3760
3761         timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
3762
3763         error = sctp_wait_for_accept(sk, timeo);
3764         if (error)
3765                 goto out;
3766
3767         /* We treat the list of associations on the endpoint as the accept
3768          * queue and pick the first association on the list.
3769          */
3770         asoc = list_entry(ep->asocs.next, struct sctp_association, asocs);
3771
3772         newsk = sp->pf->create_accept_sk(sk, asoc);
3773         if (!newsk) {
3774                 error = -ENOMEM;
3775                 goto out;
3776         }
3777
3778         /* Populate the fields of the newsk from the oldsk and migrate the
3779          * asoc to the newsk.
3780          */
3781         sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP);
3782
3783 out:
3784         sctp_release_sock(sk);
3785         *err = error;
3786         return newsk;
3787 }
3788
3789 /* The SCTP ioctl handler. */
3790 SCTP_STATIC int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg)
3791 {
3792         int rc = -ENOTCONN;
3793
3794         sctp_lock_sock(sk);
3795
3796         /*
3797          * SEQPACKET-style sockets in LISTENING state are valid, for
3798          * SCTP, so only discard TCP-style sockets in LISTENING state.
3799          */
3800         if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
3801                 goto out;
3802
3803         switch (cmd) {
3804         case SIOCINQ: {
3805                 struct sk_buff *skb;
3806                 unsigned int amount = 0;
3807
3808                 skb = skb_peek(&sk->sk_receive_queue);
3809                 if (skb != NULL) {
3810                         /*
3811                          * We will only return the amount of this packet since
3812                          * that is all that will be read.
3813                          */
3814                         amount = skb->len;
3815                 }
3816                 rc = put_user(amount, (int __user *)arg);
3817                 break;
3818         }
3819         default:
3820                 rc = -ENOIOCTLCMD;
3821                 break;
3822         }
3823 out:
3824         sctp_release_sock(sk);
3825         return rc;
3826 }
3827
3828 /* This is the function which gets called during socket creation to
3829  * initialized the SCTP-specific portion of the sock.
3830  * The sock structure should already be zero-filled memory.
3831  */
3832 SCTP_STATIC int sctp_init_sock(struct sock *sk)
3833 {
3834         struct sctp_endpoint *ep;
3835         struct sctp_sock *sp;
3836
3837         SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk);
3838
3839         sp = sctp_sk(sk);
3840
3841         /* Initialize the SCTP per socket area.  */
3842         switch (sk->sk_type) {
3843         case SOCK_SEQPACKET:
3844                 sp->type = SCTP_SOCKET_UDP;
3845                 break;
3846         case SOCK_STREAM:
3847                 sp->type = SCTP_SOCKET_TCP;
3848                 break;
3849         default:
3850                 return -ESOCKTNOSUPPORT;
3851         }
3852
3853         /* Initialize default send parameters. These parameters can be
3854          * modified with the SCTP_DEFAULT_SEND_PARAM socket option.
3855          */
3856         sp->default_stream = 0;
3857         sp->default_ppid = 0;
3858         sp->default_flags = 0;
3859         sp->default_context = 0;
3860         sp->default_timetolive = 0;
3861
3862         sp->default_rcv_context = 0;
3863         sp->max_burst = sctp_max_burst;
3864
3865         /* Initialize default setup parameters. These parameters
3866          * can be modified with the SCTP_INITMSG socket option or
3867          * overridden by the SCTP_INIT CMSG.
3868          */
3869         sp->initmsg.sinit_num_ostreams   = sctp_max_outstreams;
3870         sp->initmsg.sinit_max_instreams  = sctp_max_instreams;
3871         sp->initmsg.sinit_max_attempts   = sctp_max_retrans_init;
3872         sp->initmsg.sinit_max_init_timeo = sctp_rto_max;
3873
3874         /* Initialize default RTO related parameters.  These parameters can
3875          * be modified for with the SCTP_RTOINFO socket option.
3876          */
3877         sp->rtoinfo.srto_initial = sctp_rto_initial;
3878         sp->rtoinfo.srto_max     = sctp_rto_max;
3879         sp->rtoinfo.srto_min     = sctp_rto_min;
3880
3881         /* Initialize default association related parameters. These parameters
3882          * can be modified with the SCTP_ASSOCINFO socket option.
3883          */
3884         sp->assocparams.sasoc_asocmaxrxt = sctp_max_retrans_association;
3885         sp->assocparams.sasoc_number_peer_destinations = 0;
3886         sp->assocparams.sasoc_peer_rwnd = 0;
3887         sp->assocparams.sasoc_local_rwnd = 0;
3888         sp->assocparams.sasoc_cookie_life = sctp_valid_cookie_life;
3889
3890         /* Initialize default event subscriptions. By default, all the
3891          * options are off.
3892          */
3893         memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe));
3894
3895         /* Default Peer Address Parameters.  These defaults can
3896          * be modified via SCTP_PEER_ADDR_PARAMS
3897          */
3898         sp->hbinterval  = sctp_hb_interval;
3899         sp->pathmaxrxt  = sctp_max_retrans_path;
3900         sp->pathmtu     = 0; // allow default discovery
3901         sp->sackdelay   = sctp_sack_timeout;
3902         sp->sackfreq    = 2;
3903         sp->param_flags = SPP_HB_ENABLE |
3904                           SPP_PMTUD_ENABLE |
3905                           SPP_SACKDELAY_ENABLE;
3906
3907         /* If enabled no SCTP message fragmentation will be performed.
3908          * Configure through SCTP_DISABLE_FRAGMENTS socket option.
3909          */
3910         sp->disable_fragments = 0;
3911
3912         /* Enable Nagle algorithm by default.  */
3913         sp->nodelay           = 0;
3914
3915         /* Enable by default. */
3916         sp->v4mapped          = 1;
3917
3918         /* Auto-close idle associations after the configured
3919          * number of seconds.  A value of 0 disables this
3920          * feature.  Configure through the SCTP_AUTOCLOSE socket option,
3921          * for UDP-style sockets only.
3922          */
3923         sp->autoclose         = 0;
3924
3925         /* User specified fragmentation limit. */
3926         sp->user_frag         = 0;
3927
3928         sp->adaptation_ind = 0;
3929
3930         sp->pf = sctp_get_pf_specific(sk->sk_family);
3931
3932         /* Control variables for partial data delivery. */
3933         atomic_set(&sp->pd_mode, 0);
3934         skb_queue_head_init(&sp->pd_lobby);
3935         sp->frag_interleave = 0;
3936
3937         /* Create a per socket endpoint structure.  Even if we
3938          * change the data structure relationships, this may still
3939          * be useful for storing pre-connect address information.
3940          */
3941         ep = sctp_endpoint_new(sk, GFP_KERNEL);
3942         if (!ep)
3943                 return -ENOMEM;
3944
3945         sp->ep = ep;
3946         sp->hmac = NULL;
3947
3948         SCTP_DBG_OBJCNT_INC(sock);
3949
3950         local_bh_disable();
3951         percpu_counter_inc(&sctp_sockets_allocated);
3952         sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
3953
3954         /* Nothing can fail after this block, otherwise
3955          * sctp_destroy_sock() will be called without addr_wq_lock held
3956          */
3957         if (sctp_default_auto_asconf) {
3958                 spin_lock(&sctp_globals.addr_wq_lock);
3959                 list_add_tail(&sp->auto_asconf_list,
3960                     &sctp_auto_asconf_splist);
3961                 sp->do_auto_asconf = 1;
3962                 spin_unlock(&sctp_globals.addr_wq_lock);
3963         } else {
3964                 sp->do_auto_asconf = 0;
3965         }
3966
3967         local_bh_enable();
3968
3969         return 0;
3970 }
3971
3972 /* Cleanup any SCTP per socket resources. Must be called with
3973  * sctp_globals.addr_wq_lock held if sp->do_auto_asconf is true
3974  */
3975 SCTP_STATIC void sctp_destroy_sock(struct sock *sk)
3976 {
3977         struct sctp_sock *sp;
3978
3979         SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk);
3980
3981         /* Release our hold on the endpoint. */
3982         sp = sctp_sk(sk);
3983         /* This could happen during socket init, thus we bail out
3984          * early, since the rest of the below is not setup either.
3985          */
3986         if (sp->ep == NULL)
3987                 return;
3988
3989         if (sp->do_auto_asconf) {
3990                 sp->do_auto_asconf = 0;
3991                 list_del(&sp->auto_asconf_list);
3992         }
3993         sctp_endpoint_free(sp->ep);
3994         local_bh_disable();
3995         percpu_counter_dec(&sctp_sockets_allocated);
3996         sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
3997         local_bh_enable();
3998 }
3999
4000 /* API 4.1.7 shutdown() - TCP Style Syntax
4001  *     int shutdown(int socket, int how);
4002  *
4003  *     sd      - the socket descriptor of the association to be closed.
4004  *     how     - Specifies the type of shutdown.  The  values  are
4005  *               as follows:
4006  *               SHUT_RD
4007  *                     Disables further receive operations. No SCTP
4008  *                     protocol action is taken.
4009  *               SHUT_WR
4010  *                     Disables further send operations, and initiates
4011  *                     the SCTP shutdown sequence.
4012  *               SHUT_RDWR
4013  *                     Disables further send  and  receive  operations
4014  *                     and initiates the SCTP shutdown sequence.
4015  */
4016 SCTP_STATIC void sctp_shutdown(struct sock *sk, int how)
4017 {
4018         struct sctp_endpoint *ep;
4019         struct sctp_association *asoc;
4020
4021         if (!sctp_style(sk, TCP))
4022                 return;
4023
4024         if (how & SEND_SHUTDOWN) {
4025                 ep = sctp_sk(sk)->ep;
4026                 if (!list_empty(&ep->asocs)) {
4027                         asoc = list_entry(ep->asocs.next,
4028                                           struct sctp_association, asocs);
4029                         sctp_primitive_SHUTDOWN(asoc, NULL);
4030                 }
4031         }
4032 }
4033
4034 /* 7.2.1 Association Status (SCTP_STATUS)
4035
4036  * Applications can retrieve current status information about an
4037  * association, including association state, peer receiver window size,
4038  * number of unacked data chunks, and number of data chunks pending
4039  * receipt.  This information is read-only.
4040  */
4041 static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
4042                                        char __user *optval,
4043                                        int __user *optlen)
4044 {
4045         struct sctp_status status;
4046         struct sctp_association *asoc = NULL;
4047         struct sctp_transport *transport;
4048         sctp_assoc_t associd;
4049         int retval = 0;
4050
4051         if (len < sizeof(status)) {
4052                 retval = -EINVAL;
4053                 goto out;
4054         }
4055
4056         len = sizeof(status);
4057         if (copy_from_user(&status, optval, len)) {
4058                 retval = -EFAULT;
4059                 goto out;
4060         }
4061
4062         associd = status.sstat_assoc_id;
4063         asoc = sctp_id2assoc(sk, associd);
4064         if (!asoc) {
4065                 retval = -EINVAL;
4066                 goto out;
4067         }
4068
4069         transport = asoc->peer.primary_path;
4070
4071         status.sstat_assoc_id = sctp_assoc2id(asoc);
4072         status.sstat_state = asoc->state;
4073         status.sstat_rwnd =  asoc->peer.rwnd;
4074         status.sstat_unackdata = asoc->unack_data;
4075
4076         status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map);
4077         status.sstat_instrms = asoc->c.sinit_max_instreams;
4078         status.sstat_outstrms = asoc->c.sinit_num_ostreams;
4079         status.sstat_fragmentation_point = asoc->frag_point;
4080         status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
4081         memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr,
4082                         transport->af_specific->sockaddr_len);
4083         /* Map ipv4 address into v4-mapped-on-v6 address.  */
4084         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sctp_sk(sk),
4085                 (union sctp_addr *)&status.sstat_primary.spinfo_address);
4086         status.sstat_primary.spinfo_state = transport->state;
4087         status.sstat_primary.spinfo_cwnd = transport->cwnd;
4088         status.sstat_primary.spinfo_srtt = transport->srtt;
4089         status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto);
4090         status.sstat_primary.spinfo_mtu = transport->pathmtu;
4091
4092         if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN)
4093                 status.sstat_primary.spinfo_state = SCTP_ACTIVE;
4094
4095         if (put_user(len, optlen)) {
4096                 retval = -EFAULT;
4097                 goto out;
4098         }
4099
4100         SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
4101                           len, status.sstat_state, status.sstat_rwnd,
4102                           status.sstat_assoc_id);
4103
4104         if (copy_to_user(optval, &status, len)) {
4105                 retval = -EFAULT;
4106                 goto out;
4107         }
4108
4109 out:
4110         return retval;
4111 }
4112
4113
4114 /* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO)
4115  *
4116  * Applications can retrieve information about a specific peer address
4117  * of an association, including its reachability state, congestion
4118  * window, and retransmission timer values.  This information is
4119  * read-only.
4120  */
4121 static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len,
4122                                           char __user *optval,
4123                                           int __user *optlen)
4124 {
4125         struct sctp_paddrinfo pinfo;
4126         struct sctp_transport *transport;
4127         int retval = 0;
4128
4129         if (len < sizeof(pinfo)) {
4130                 retval = -EINVAL;
4131                 goto out;
4132         }
4133
4134         len = sizeof(pinfo);
4135         if (copy_from_user(&pinfo, optval, len)) {
4136                 retval = -EFAULT;
4137                 goto out;
4138         }
4139
4140         transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address,
4141                                            pinfo.spinfo_assoc_id);
4142         if (!transport)
4143                 return -EINVAL;
4144
4145         pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc);
4146         pinfo.spinfo_state = transport->state;
4147         pinfo.spinfo_cwnd = transport->cwnd;
4148         pinfo.spinfo_srtt = transport->srtt;
4149         pinfo.spinfo_rto = jiffies_to_msecs(transport->rto);
4150         pinfo.spinfo_mtu = transport->pathmtu;
4151
4152         if (pinfo.spinfo_state == SCTP_UNKNOWN)
4153                 pinfo.spinfo_state = SCTP_ACTIVE;
4154
4155         if (put_user(len, optlen)) {
4156                 retval = -EFAULT;
4157                 goto out;
4158         }
4159
4160         if (copy_to_user(optval, &pinfo, len)) {
4161                 retval = -EFAULT;
4162                 goto out;
4163         }
4164
4165 out:
4166         return retval;
4167 }
4168
4169 /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS)
4170  *
4171  * This option is a on/off flag.  If enabled no SCTP message
4172  * fragmentation will be performed.  Instead if a message being sent
4173  * exceeds the current PMTU size, the message will NOT be sent and
4174  * instead a error will be indicated to the user.
4175  */
4176 static int sctp_getsockopt_disable_fragments(struct sock *sk, int len,
4177                                         char __user *optval, int __user *optlen)
4178 {
4179         int val;
4180
4181         if (len < sizeof(int))
4182                 return -EINVAL;
4183
4184         len = sizeof(int);
4185         val = (sctp_sk(sk)->disable_fragments == 1);
4186         if (put_user(len, optlen))
4187                 return -EFAULT;
4188         if (copy_to_user(optval, &val, len))
4189                 return -EFAULT;
4190         return 0;
4191 }
4192
4193 /* 7.1.15 Set notification and ancillary events (SCTP_EVENTS)
4194  *
4195  * This socket option is used to specify various notifications and
4196  * ancillary data the user wishes to receive.
4197  */
4198 static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval,
4199                                   int __user *optlen)
4200 {
4201         if (len == 0)
4202                 return -EINVAL;
4203         if (len > sizeof(struct sctp_event_subscribe))
4204                 len = sizeof(struct sctp_event_subscribe);
4205         if (put_user(len, optlen))
4206                 return -EFAULT;
4207         if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len))
4208                 return -EFAULT;
4209         return 0;
4210 }
4211
4212 /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE)
4213  *
4214  * This socket option is applicable to the UDP-style socket only.  When
4215  * set it will cause associations that are idle for more than the
4216  * specified number of seconds to automatically close.  An association
4217  * being idle is defined an association that has NOT sent or received
4218  * user data.  The special value of '0' indicates that no automatic
4219  * close of any associations should be performed.  The option expects an
4220  * integer defining the number of seconds of idle time before an
4221  * association is closed.
4222  */
4223 static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen)
4224 {
4225         /* Applicable to UDP-style socket only */
4226         if (sctp_style(sk, TCP))
4227                 return -EOPNOTSUPP;
4228         if (len < sizeof(int))
4229                 return -EINVAL;
4230         len = sizeof(int);
4231         if (put_user(len, optlen))
4232                 return -EFAULT;
4233         if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
4234                 return -EFAULT;
4235         return 0;
4236 }
4237
4238 /* Helper routine to branch off an association to a new socket.  */
4239 SCTP_STATIC int sctp_do_peeloff(struct sctp_association *asoc,
4240                                 struct socket **sockp)
4241 {
4242         struct sock *sk = asoc->base.sk;
4243         struct sctp_sock *sp = sctp_sk(sk);
4244         struct socket *sock;
4245         int err = 0;
4246
4247         /* Do not peel off from one netns to another one. */
4248         if (!net_eq(current->nsproxy->net_ns, sock_net(sk)))
4249                 return -EINVAL;
4250
4251         /* An association cannot be branched off from an already peeled-off
4252          * socket, nor is this supported for tcp style sockets.
4253          */
4254         if (!sctp_style(sk, UDP))
4255                 return -EINVAL;
4256
4257         /* Create a new socket.  */
4258         err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock);
4259         if (err < 0)
4260                 return err;
4261
4262         sctp_copy_sock(sock->sk, sk, asoc);
4263
4264         /* Make peeled-off sockets more like 1-1 accepted sockets.
4265          * Set the daddr and initialize id to something more random
4266          */
4267         sp->pf->to_sk_daddr(&asoc->peer.primary_addr, sk);
4268
4269         /* Populate the fields of the newsk from the oldsk and migrate the
4270          * asoc to the newsk.
4271          */
4272         sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH);
4273
4274         *sockp = sock;
4275
4276         return err;
4277 }
4278
4279 static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen)
4280 {
4281         sctp_peeloff_arg_t peeloff;
4282         struct socket *newsock;
4283         int retval = 0;
4284         struct sctp_association *asoc;
4285
4286         if (len < sizeof(sctp_peeloff_arg_t))
4287                 return -EINVAL;
4288         len = sizeof(sctp_peeloff_arg_t);
4289         if (copy_from_user(&peeloff, optval, len))
4290                 return -EFAULT;
4291
4292         asoc = sctp_id2assoc(sk, peeloff.associd);
4293         if (!asoc) {
4294                 retval = -EINVAL;
4295                 goto out;
4296         }
4297
4298         SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p\n", __func__, sk, asoc);
4299
4300         retval = sctp_do_peeloff(asoc, &newsock);
4301         if (retval < 0)
4302                 goto out;
4303
4304         /* Map the socket to an unused fd that can be returned to the user.  */
4305         retval = sock_map_fd(newsock, 0);
4306         if (retval < 0) {
4307                 sock_release(newsock);
4308                 goto out;
4309         }
4310
4311         SCTP_DEBUG_PRINTK("%s: sk: %p asoc: %p newsk: %p sd: %d\n",
4312                           __func__, sk, asoc, newsock->sk, retval);
4313
4314         /* Return the fd mapped to the new socket.  */
4315         peeloff.sd = retval;
4316         if (put_user(len, optlen))
4317                 return -EFAULT;
4318         if (copy_to_user(optval, &peeloff, len))
4319                 retval = -EFAULT;
4320
4321 out:
4322         return retval;
4323 }
4324
4325 /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS)
4326  *
4327  * Applications can enable or disable heartbeats for any peer address of
4328  * an association, modify an address's heartbeat interval, force a
4329  * heartbeat to be sent immediately, and adjust the address's maximum
4330  * number of retransmissions sent before an address is considered
4331  * unreachable.  The following structure is used to access and modify an
4332  * address's parameters:
4333  *
4334  *  struct sctp_paddrparams {
4335  *     sctp_assoc_t            spp_assoc_id;
4336  *     struct sockaddr_storage spp_address;
4337  *     uint32_t                spp_hbinterval;
4338  *     uint16_t                spp_pathmaxrxt;
4339  *     uint32_t                spp_pathmtu;
4340  *     uint32_t                spp_sackdelay;
4341  *     uint32_t                spp_flags;
4342  * };
4343  *
4344  *   spp_assoc_id    - (one-to-many style socket) This is filled in the
4345  *                     application, and identifies the association for
4346  *                     this query.
4347  *   spp_address     - This specifies which address is of interest.
4348  *   spp_hbinterval  - This contains the value of the heartbeat interval,
4349  *                     in milliseconds.  If a  value of zero
4350  *                     is present in this field then no changes are to
4351  *                     be made to this parameter.
4352  *   spp_pathmaxrxt  - This contains the maximum number of
4353  *                     retransmissions before this address shall be
4354  *                     considered unreachable. If a  value of zero
4355  *                     is present in this field then no changes are to
4356  *                     be made to this parameter.
4357  *   spp_pathmtu     - When Path MTU discovery is disabled the value
4358  *                     specified here will be the "fixed" path mtu.
4359  *                     Note that if the spp_address field is empty
4360  *                     then all associations on this address will
4361  *                     have this fixed path mtu set upon them.
4362  *
4363  *   spp_sackdelay   - When delayed sack is enabled, this value specifies
4364  *                     the number of milliseconds that sacks will be delayed
4365  *                     for. This value will apply to all addresses of an
4366  *                     association if the spp_address field is empty. Note
4367  *                     also, that if delayed sack is enabled and this
4368  *                     value is set to 0, no change is made to the last
4369  *                     recorded delayed sack timer value.
4370  *
4371  *   spp_flags       - These flags are used to control various features
4372  *                     on an association. The flag field may contain
4373  *                     zero or more of the following options.
4374  *
4375  *                     SPP_HB_ENABLE  - Enable heartbeats on the
4376  *                     specified address. Note that if the address
4377  *                     field is empty all addresses for the association
4378  *                     have heartbeats enabled upon them.
4379  *
4380  *                     SPP_HB_DISABLE - Disable heartbeats on the
4381  *                     speicifed address. Note that if the address
4382  *                     field is empty all addresses for the association
4383  *                     will have their heartbeats disabled. Note also
4384  *                     that SPP_HB_ENABLE and SPP_HB_DISABLE are
4385  *                     mutually exclusive, only one of these two should
4386  *                     be specified. Enabling both fields will have
4387  *                     undetermined results.
4388  *
4389  *                     SPP_HB_DEMAND - Request a user initiated heartbeat
4390  *                     to be made immediately.
4391  *
4392  *                     SPP_PMTUD_ENABLE - This field will enable PMTU
4393  *                     discovery upon the specified address. Note that
4394  *                     if the address feild is empty then all addresses
4395  *                     on the association are effected.
4396  *
4397  *                     SPP_PMTUD_DISABLE - This field will disable PMTU
4398  *                     discovery upon the specified address. Note that
4399  *                     if the address feild is empty then all addresses
4400  *                     on the association are effected. Not also that
4401  *                     SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually
4402  *                     exclusive. Enabling both will have undetermined
4403  *                     results.
4404  *
4405  *                     SPP_SACKDELAY_ENABLE - Setting this flag turns
4406  *                     on delayed sack. The time specified in spp_sackdelay
4407  *                     is used to specify the sack delay for this address. Note
4408  *                     that if spp_address is empty then all addresses will
4409  *                     enable delayed sack and take on the sack delay
4410  *                     value specified in spp_sackdelay.
4411  *                     SPP_SACKDELAY_DISABLE - Setting this flag turns
4412  *                     off delayed sack. If the spp_address field is blank then
4413  *                     delayed sack is disabled for the entire association. Note
4414  *                     also that this field is mutually exclusive to
4415  *                     SPP_SACKDELAY_ENABLE, setting both will have undefined
4416  *                     results.
4417  */
4418 static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len,
4419                                             char __user *optval, int __user *optlen)
4420 {
4421         struct sctp_paddrparams  params;
4422         struct sctp_transport   *trans = NULL;
4423         struct sctp_association *asoc = NULL;
4424         struct sctp_sock        *sp = sctp_sk(sk);
4425
4426         if (len < sizeof(struct sctp_paddrparams))
4427                 return -EINVAL;
4428         len = sizeof(struct sctp_paddrparams);
4429         if (copy_from_user(&params, optval, len))
4430                 return -EFAULT;
4431
4432         /* If an address other than INADDR_ANY is specified, and
4433          * no transport is found, then the request is invalid.
4434          */
4435         if (!sctp_is_any(sk, ( union sctp_addr *)&params.spp_address)) {
4436                 trans = sctp_addr_id2transport(sk, &params.spp_address,
4437                                                params.spp_assoc_id);
4438                 if (!trans) {
4439                         SCTP_DEBUG_PRINTK("Failed no transport\n");
4440                         return -EINVAL;
4441                 }
4442         }
4443
4444         /* Get association, if assoc_id != 0 and the socket is a one
4445          * to many style socket, and an association was not found, then
4446          * the id was invalid.
4447          */
4448         asoc = sctp_id2assoc(sk, params.spp_assoc_id);
4449         if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) {
4450                 SCTP_DEBUG_PRINTK("Failed no association\n");
4451                 return -EINVAL;
4452         }
4453
4454         if (trans) {
4455                 /* Fetch transport values. */
4456                 params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval);
4457                 params.spp_pathmtu    = trans->pathmtu;
4458                 params.spp_pathmaxrxt = trans->pathmaxrxt;
4459                 params.spp_sackdelay  = jiffies_to_msecs(trans->sackdelay);
4460
4461                 /*draft-11 doesn't say what to return in spp_flags*/
4462                 params.spp_flags      = trans->param_flags;
4463         } else if (asoc) {
4464                 /* Fetch association values. */
4465                 params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval);
4466                 params.spp_pathmtu    = asoc->pathmtu;
4467                 params.spp_pathmaxrxt = asoc->pathmaxrxt;
4468                 params.spp_sackdelay  = jiffies_to_msecs(asoc->sackdelay);
4469
4470                 /*draft-11 doesn't say what to return in spp_flags*/
4471                 params.spp_flags      = asoc->param_flags;
4472         } else {
4473                 /* Fetch socket values. */
4474                 params.spp_hbinterval = sp->hbinterval;
4475                 params.spp_pathmtu    = sp->pathmtu;
4476                 params.spp_sackdelay  = sp->sackdelay;
4477                 params.spp_pathmaxrxt = sp->pathmaxrxt;
4478
4479                 /*draft-11 doesn't say what to return in spp_flags*/
4480                 params.spp_flags      = sp->param_flags;
4481         }
4482
4483         if (copy_to_user(optval, &params, len))
4484                 return -EFAULT;
4485
4486         if (put_user(len, optlen))
4487                 return -EFAULT;
4488
4489         return 0;
4490 }
4491
4492 /*
4493  * 7.1.23.  Get or set delayed ack timer (SCTP_DELAYED_SACK)
4494  *
4495  * This option will effect the way delayed acks are performed.  This
4496  * option allows you to get or set the delayed ack time, in
4497  * milliseconds.  It also allows changing the delayed ack frequency.
4498  * Changing the frequency to 1 disables the delayed sack algorithm.  If
4499  * the assoc_id is 0, then this sets or gets the endpoints default
4500  * values.  If the assoc_id field is non-zero, then the set or get
4501  * effects the specified association for the one to many model (the
4502  * assoc_id field is ignored by the one to one model).  Note that if
4503  * sack_delay or sack_freq are 0 when setting this option, then the
4504  * current values will remain unchanged.
4505  *
4506  * struct sctp_sack_info {
4507  *     sctp_assoc_t            sack_assoc_id;
4508  *     uint32_t                sack_delay;
4509  *     uint32_t                sack_freq;
4510  * };
4511  *
4512  * sack_assoc_id -  This parameter, indicates which association the user
4513  *    is performing an action upon.  Note that if this field's value is
4514  *    zero then the endpoints default value is changed (effecting future
4515  *    associations only).
4516  *
4517  * sack_delay -  This parameter contains the number of milliseconds that
4518  *    the user is requesting the delayed ACK timer be set to.  Note that
4519  *    this value is defined in the standard to be between 200 and 500
4520  *    milliseconds.
4521  *
4522  * sack_freq -  This parameter contains the number of packets that must
4523  *    be received before a sack is sent without waiting for the delay
4524  *    timer to expire.  The default value for this is 2, setting this
4525  *    value to 1 will disable the delayed sack algorithm.
4526  */
4527 static int sctp_getsockopt_delayed_ack(struct sock *sk, int len,
4528                                             char __user *optval,
4529                                             int __user *optlen)
4530 {
4531         struct sctp_sack_info    params;
4532         struct sctp_association *asoc = NULL;
4533         struct sctp_sock        *sp = sctp_sk(sk);
4534
4535         if (len >= sizeof(struct sctp_sack_info)) {
4536                 len = sizeof(struct sctp_sack_info);
4537
4538                 if (copy_from_user(&params, optval, len))
4539                         return -EFAULT;
4540         } else if (len == sizeof(struct sctp_assoc_value)) {
4541                 pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n");
4542                 pr_warn("Use struct sctp_sack_info instead\n");
4543                 if (copy_from_user(&params, optval, len))
4544                         return -EFAULT;
4545         } else
4546                 return - EINVAL;
4547
4548         /* Get association, if sack_assoc_id != 0 and the socket is a one
4549          * to many style socket, and an association was not found, then
4550          * the id was invalid.
4551          */
4552         asoc = sctp_id2assoc(sk, params.sack_assoc_id);
4553         if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP))
4554                 return -EINVAL;
4555
4556         if (asoc) {
4557                 /* Fetch association values. */
4558                 if (asoc->param_flags & SPP_SACKDELAY_ENABLE) {
4559                         params.sack_delay = jiffies_to_msecs(
4560                                 asoc->sackdelay);
4561                         params.sack_freq = asoc->sackfreq;
4562
4563                 } else {
4564                         params.sack_delay = 0;
4565                         params.sack_freq = 1;
4566                 }
4567         } else {
4568                 /* Fetch socket values. */
4569                 if (sp->param_flags & SPP_SACKDELAY_ENABLE) {
4570                         params.sack_delay  = sp->sackdelay;
4571                         params.sack_freq = sp->sackfreq;
4572                 } else {
4573                         params.sack_delay  = 0;
4574                         params.sack_freq = 1;
4575                 }
4576         }
4577
4578         if (copy_to_user(optval, &params, len))
4579                 return -EFAULT;
4580
4581         if (put_user(len, optlen))
4582                 return -EFAULT;
4583
4584         return 0;
4585 }
4586
4587 /* 7.1.3 Initialization Parameters (SCTP_INITMSG)
4588  *
4589  * Applications can specify protocol parameters for the default association
4590  * initialization.  The option name argument to setsockopt() and getsockopt()
4591  * is SCTP_INITMSG.
4592  *
4593  * Setting initialization parameters is effective only on an unconnected
4594  * socket (for UDP-style sockets only future associations are effected
4595  * by the change).  With TCP-style sockets, this option is inherited by
4596  * sockets derived from a listener socket.
4597  */
4598 static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen)
4599 {
4600         if (len < sizeof(struct sctp_initmsg))
4601                 return -EINVAL;
4602         len = sizeof(struct sctp_initmsg);
4603         if (put_user(len, optlen))
4604                 return -EFAULT;
4605         if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len))
4606                 return -EFAULT;
4607         return 0;
4608 }
4609
4610
4611 static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
4612                                       char __user *optval, int __user *optlen)
4613 {
4614         struct sctp_association *asoc;
4615         int cnt = 0;
4616         struct sctp_getaddrs getaddrs;
4617         struct sctp_transport *from;
4618         void __user *to;
4619         union sctp_addr temp;
4620         struct sctp_sock *sp = sctp_sk(sk);
4621         int addrlen;
4622         size_t space_left;
4623         int bytes_copied;
4624
4625         if (len < sizeof(struct sctp_getaddrs))
4626                 return -EINVAL;
4627
4628         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4629                 return -EFAULT;
4630
4631         /* For UDP-style sockets, id specifies the association to query.  */
4632         asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4633         if (!asoc)
4634                 return -EINVAL;
4635
4636         to = optval + offsetof(struct sctp_getaddrs,addrs);
4637         space_left = len - offsetof(struct sctp_getaddrs,addrs);
4638
4639         list_for_each_entry(from, &asoc->peer.transport_addr_list,
4640                                 transports) {
4641                 memcpy(&temp, &from->ipaddr, sizeof(temp));
4642                 addrlen = sctp_get_pf_specific(sk->sk_family)
4643                               ->addr_to_user(sp, &temp);
4644                 if (space_left < addrlen)
4645                         return -ENOMEM;
4646                 if (copy_to_user(to, &temp, addrlen))
4647                         return -EFAULT;
4648                 to += addrlen;
4649                 cnt++;
4650                 space_left -= addrlen;
4651         }
4652
4653         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num))
4654                 return -EFAULT;
4655         bytes_copied = ((char __user *)to) - optval;
4656         if (put_user(bytes_copied, optlen))
4657                 return -EFAULT;
4658
4659         return 0;
4660 }
4661
4662 static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
4663                             size_t space_left, int *bytes_copied)
4664 {
4665         struct sctp_sockaddr_entry *addr;
4666         union sctp_addr temp;
4667         int cnt = 0;
4668         int addrlen;
4669
4670         rcu_read_lock();
4671         list_for_each_entry_rcu(addr, &sctp_local_addr_list, list) {
4672                 if (!addr->valid)
4673                         continue;
4674
4675                 if ((PF_INET == sk->sk_family) &&
4676                     (AF_INET6 == addr->a.sa.sa_family))
4677                         continue;
4678                 if ((PF_INET6 == sk->sk_family) &&
4679                     inet_v6_ipv6only(sk) &&
4680                     (AF_INET == addr->a.sa.sa_family))
4681                         continue;
4682                 memcpy(&temp, &addr->a, sizeof(temp));
4683                 if (!temp.v4.sin_port)
4684                         temp.v4.sin_port = htons(port);
4685
4686                 addrlen = sctp_get_pf_specific(sk->sk_family)
4687                               ->addr_to_user(sctp_sk(sk), &temp);
4688
4689                 if (space_left < addrlen) {
4690                         cnt =  -ENOMEM;
4691                         break;
4692                 }
4693                 memcpy(to, &temp, addrlen);
4694
4695                 to += addrlen;
4696                 cnt ++;
4697                 space_left -= addrlen;
4698                 *bytes_copied += addrlen;
4699         }
4700         rcu_read_unlock();
4701
4702         return cnt;
4703 }
4704
4705
4706 static int sctp_getsockopt_local_addrs(struct sock *sk, int len,
4707                                        char __user *optval, int __user *optlen)
4708 {
4709         struct sctp_bind_addr *bp;
4710         struct sctp_association *asoc;
4711         int cnt = 0;
4712         struct sctp_getaddrs getaddrs;
4713         struct sctp_sockaddr_entry *addr;
4714         void __user *to;
4715         union sctp_addr temp;
4716         struct sctp_sock *sp = sctp_sk(sk);
4717         int addrlen;
4718         int err = 0;
4719         size_t space_left;
4720         int bytes_copied = 0;
4721         void *addrs;
4722         void *buf;
4723
4724         if (len < sizeof(struct sctp_getaddrs))
4725                 return -EINVAL;
4726
4727         if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs)))
4728                 return -EFAULT;
4729
4730         /*
4731          *  For UDP-style sockets, id specifies the association to query.
4732          *  If the id field is set to the value '0' then the locally bound
4733          *  addresses are returned without regard to any particular
4734          *  association.
4735          */
4736         if (0 == getaddrs.assoc_id) {
4737                 bp = &sctp_sk(sk)->ep->base.bind_addr;
4738         } else {
4739                 asoc = sctp_id2assoc(sk, getaddrs.assoc_id);
4740                 if (!asoc)
4741                         return -EINVAL;
4742                 bp = &asoc->base.bind_addr;
4743         }
4744
4745         to = optval + offsetof(struct sctp_getaddrs,addrs);
4746         space_left = len - offsetof(struct sctp_getaddrs,addrs);
4747
4748         addrs = kmalloc(space_left, GFP_KERNEL);
4749         if (!addrs)
4750                 return -ENOMEM;
4751
4752         /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid
4753          * addresses from the global local address list.
4754          */
4755         if (sctp_list_single_entry(&bp->address_list)) {
4756                 addr = list_entry(bp->address_list.next,
4757                                   struct sctp_sockaddr_entry, list);
4758                 if (sctp_is_any(sk, &addr->a)) {
4759                         cnt = sctp_copy_laddrs(sk, bp->port, addrs,
4760                                                 space_left, &bytes_copied);
4761                         if (cnt < 0) {
4762                                 err = cnt;
4763                                 goto out;
4764                         }
4765                         goto copy_getaddrs;
4766                 }
4767         }
4768
4769         buf = addrs;
4770         /* Protection on the bound address list is not needed since
4771          * in the socket option context we hold a socket lock and
4772          * thus the bound address list can't change.
4773          */
4774         list_for_each_entry(addr, &bp->address_list, list) {
4775                 memcpy(&temp, &addr->a, sizeof(temp));
4776                 addrlen = sctp_get_pf_specific(sk->sk_family)
4777                               ->addr_to_user(sp, &temp);
4778                 if (space_left < addrlen) {
4779                         err =  -ENOMEM; /*fixme: right error?*/
4780                         goto out;
4781                 }
4782                 memcpy(buf, &temp, addrlen);
4783                 buf += addrlen;
4784                 bytes_copied += addrlen;
4785                 cnt ++;
4786                 space_left -= addrlen;
4787         }
4788
4789 copy_getaddrs:
4790         if (copy_to_user(to, addrs, bytes_copied)) {
4791                 err = -EFAULT;
4792                 goto out;
4793         }
4794         if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) {
4795                 err = -EFAULT;
4796                 goto out;
4797         }
4798         if (put_user(bytes_copied, optlen))
4799                 err = -EFAULT;
4800 out:
4801         kfree(addrs);
4802         return err;
4803 }
4804
4805 /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR)
4806  *
4807  * Requests that the local SCTP stack use the enclosed peer address as
4808  * the association primary.  The enclosed address must be one of the
4809  * association peer's addresses.
4810  */
4811 static int sctp_getsockopt_primary_addr(struct sock *sk, int len,
4812                                         char __user *optval, int __user *optlen)
4813 {
4814         struct sctp_prim prim;
4815         struct sctp_association *asoc;
4816         struct sctp_sock *sp = sctp_sk(sk);
4817
4818         if (len < sizeof(struct sctp_prim))
4819                 return -EINVAL;
4820
4821         len = sizeof(struct sctp_prim);
4822
4823         if (copy_from_user(&prim, optval, len))
4824                 return -EFAULT;
4825
4826         asoc = sctp_id2assoc(sk, prim.ssp_assoc_id);
4827         if (!asoc)
4828                 return -EINVAL;
4829
4830         if (!asoc->peer.primary_path)
4831                 return -ENOTCONN;
4832
4833         memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr,
4834                 asoc->peer.primary_path->af_specific->sockaddr_len);
4835
4836         sctp_get_pf_specific(sk->sk_family)->addr_to_user(sp,
4837                         (union sctp_addr *)&prim.ssp_addr);
4838
4839         if (put_user(len, optlen))
4840                 return -EFAULT;
4841         if (copy_to_user(optval, &prim, len))
4842                 return -EFAULT;
4843
4844         return 0;
4845 }
4846
4847 /*
4848  * 7.1.11  Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER)
4849  *
4850  * Requests that the local endpoint set the specified Adaptation Layer
4851  * Indication parameter for all future INIT and INIT-ACK exchanges.
4852  */
4853 static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len,
4854                                   char __user *optval, int __user *optlen)
4855 {
4856         struct sctp_setadaptation adaptation;
4857
4858         if (len < sizeof(struct sctp_setadaptation))
4859                 return -EINVAL;
4860
4861         len = sizeof(struct sctp_setadaptation);
4862
4863         adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind;
4864
4865         if (put_user(len, optlen))
4866                 return -EFAULT;
4867         if (copy_to_user(optval, &adaptation, len))
4868                 return -EFAULT;
4869
4870         return 0;
4871 }
4872
4873 /*
4874  *
4875  * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM)
4876  *
4877  *   Applications that wish to use the sendto() system call may wish to
4878  *   specify a default set of parameters that would normally be supplied
4879  *   through the inclusion of ancillary data.  This socket option allows
4880  *   such an application to set the default sctp_sndrcvinfo structure.
4881
4882
4883  *   The application that wishes to use this socket option simply passes
4884  *   in to this call the sctp_sndrcvinfo structure defined in Section
4885  *   5.2.2) The input parameters accepted by this call include
4886  *   sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context,
4887  *   sinfo_timetolive.  The user must provide the sinfo_assoc_id field in
4888  *   to this call if the caller is using the UDP model.
4889  *
4890  *   For getsockopt, it get the default sctp_sndrcvinfo structure.
4891  */
4892 static int sctp_getsockopt_default_send_param(struct sock *sk,
4893                                         int len, char __user *optval,
4894                                         int __user *optlen)
4895 {
4896         struct sctp_sndrcvinfo info;
4897         struct sctp_association *asoc;
4898         struct sctp_sock *sp = sctp_sk(sk);
4899
4900         if (len < sizeof(struct sctp_sndrcvinfo))
4901                 return -EINVAL;
4902
4903         len = sizeof(struct sctp_sndrcvinfo);
4904
4905         if (copy_from_user(&info, optval, len))
4906                 return -EFAULT;
4907
4908         asoc = sctp_id2assoc(sk, info.sinfo_assoc_id);
4909         if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP))
4910                 return -EINVAL;
4911
4912         if (asoc) {
4913                 info.sinfo_stream = asoc->default_stream;
4914                 info.sinfo_flags = asoc->default_flags;
4915                 info.sinfo_ppid = asoc->default_ppid;
4916                 info.sinfo_context = asoc->default_context;
4917                 info.sinfo_timetolive = asoc->default_timetolive;
4918         } else {
4919                 info.sinfo_stream = sp->default_stream;
4920                 info.sinfo_flags = sp->default_flags;
4921                 info.sinfo_ppid = sp->default_ppid;
4922                 info.sinfo_context = sp->default_context;
4923                 info.sinfo_timetolive = sp->default_timetolive;
4924         }
4925
4926         if (put_user(len, optlen))
4927                 return -EFAULT;
4928         if (copy_to_user(optval, &info, len))
4929                 return -EFAULT;
4930
4931         return 0;
4932 }
4933
4934 /*
4935  *
4936  * 7.1.5 SCTP_NODELAY
4937  *
4938  * Turn on/off any Nagle-like algorithm.  This means that packets are
4939  * generally sent as soon as possible and no unnecessary delays are
4940  * introduced, at the cost of more packets in the network.  Expects an
4941  * integer boolean flag.
4942  */
4943
4944 static int sctp_getsockopt_nodelay(struct sock *sk, int len,
4945                                    char __user *optval, int __user *optlen)
4946 {
4947         int val;
4948
4949         if (len < sizeof(int))
4950                 return -EINVAL;
4951
4952         len = sizeof(int);
4953         val = (sctp_sk(sk)->nodelay == 1);
4954         if (put_user(len, optlen))
4955                 return -EFAULT;
4956         if (copy_to_user(optval, &val, len))
4957                 return -EFAULT;
4958         return 0;
4959 }
4960
4961 /*
4962  *
4963  * 7.1.1 SCTP_RTOINFO
4964  *
4965  * The protocol parameters used to initialize and bound retransmission
4966  * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access
4967  * and modify these parameters.
4968  * All parameters are time values, in milliseconds.  A value of 0, when
4969  * modifying the parameters, indicates that the current value should not
4970  * be changed.
4971  *
4972  */
4973 static int sctp_getsockopt_rtoinfo(struct sock *sk, int len,
4974                                 char __user *optval,
4975                                 int __user *optlen) {
4976         struct sctp_rtoinfo rtoinfo;
4977         struct sctp_association *asoc;
4978
4979         if (len < sizeof (struct sctp_rtoinfo))
4980                 return -EINVAL;
4981
4982         len = sizeof(struct sctp_rtoinfo);
4983
4984         if (copy_from_user(&rtoinfo, optval, len))
4985                 return -EFAULT;
4986
4987         asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id);
4988
4989         if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP))
4990                 return -EINVAL;
4991
4992         /* Values corresponding to the specific association. */
4993         if (asoc) {
4994                 rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial);
4995                 rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max);
4996                 rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min);
4997         } else {
4998                 /* Values corresponding to the endpoint. */
4999                 struct sctp_sock *sp = sctp_sk(sk);
5000
5001                 rtoinfo.srto_initial = sp->rtoinfo.srto_initial;
5002                 rtoinfo.srto_max = sp->rtoinfo.srto_max;
5003                 rtoinfo.srto_min = sp->rtoinfo.srto_min;
5004         }
5005
5006         if (put_user(len, optlen))
5007                 return -EFAULT;
5008
5009         if (copy_to_user(optval, &rtoinfo, len))
5010                 return -EFAULT;
5011
5012         return 0;
5013 }
5014
5015 /*
5016  *
5017  * 7.1.2 SCTP_ASSOCINFO
5018  *
5019  * This option is used to tune the maximum retransmission attempts
5020  * of the association.
5021  * Returns an error if the new association retransmission value is
5022  * greater than the sum of the retransmission value  of the peer.
5023  * See [SCTP] for more information.
5024  *
5025  */
5026 static int sctp_getsockopt_associnfo(struct sock *sk, int len,
5027                                      char __user *optval,
5028                                      int __user *optlen)
5029 {
5030
5031         struct sctp_assocparams assocparams;
5032         struct sctp_association *asoc;
5033         struct list_head *pos;
5034         int cnt = 0;
5035
5036         if (len < sizeof (struct sctp_assocparams))
5037                 return -EINVAL;
5038
5039         len = sizeof(struct sctp_assocparams);
5040
5041         if (copy_from_user(&assocparams, optval, len))
5042                 return -EFAULT;
5043
5044         asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id);
5045
5046         if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP))
5047                 return -EINVAL;
5048
5049         /* Values correspoinding to the specific association */
5050         if (asoc) {
5051                 assocparams.sasoc_asocmaxrxt = asoc->max_retrans;
5052                 assocparams.sasoc_peer_rwnd = asoc->peer.rwnd;
5053                 assocparams.sasoc_local_rwnd = asoc->a_rwnd;
5054                 assocparams.sasoc_cookie_life = (asoc->cookie_life.tv_sec
5055                                                 * 1000) +
5056                                                 (asoc->cookie_life.tv_usec
5057                                                 / 1000);
5058
5059                 list_for_each(pos, &asoc->peer.transport_addr_list) {
5060                         cnt ++;
5061                 }
5062
5063                 assocparams.sasoc_number_peer_destinations = cnt;
5064         } else {
5065                 /* Values corresponding to the endpoint */
5066                 struct sctp_sock *sp = sctp_sk(sk);
5067
5068                 assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt;
5069                 assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd;
5070                 assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd;
5071                 assocparams.sasoc_cookie_life =
5072                                         sp->assocparams.sasoc_cookie_life;
5073                 assocparams.sasoc_number_peer_destinations =
5074                                         sp->assocparams.
5075                                         sasoc_number_peer_destinations;
5076         }
5077
5078         if (put_user(len, optlen))
5079                 return -EFAULT;
5080
5081         if (copy_to_user(optval, &assocparams, len))
5082                 return -EFAULT;
5083
5084         return 0;
5085 }
5086
5087 /*
5088  * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR)
5089  *
5090  * This socket option is a boolean flag which turns on or off mapped V4
5091  * addresses.  If this option is turned on and the socket is type
5092  * PF_INET6, then IPv4 addresses will be mapped to V6 representation.
5093  * If this option is turned off, then no mapping will be done of V4
5094  * addresses and a user will receive both PF_INET6 and PF_INET type
5095  * addresses on the socket.
5096  */
5097 static int sctp_getsockopt_mappedv4(struct sock *sk, int len,
5098                                     char __user *optval, int __user *optlen)
5099 {
5100         int val;
5101         struct sctp_sock *sp = sctp_sk(sk);
5102
5103         if (len < sizeof(int))
5104                 return -EINVAL;
5105
5106         len = sizeof(int);
5107         val = sp->v4mapped;
5108         if (put_user(len, optlen))
5109                 return -EFAULT;
5110         if (copy_to_user(optval, &val, len))
5111                 return -EFAULT;
5112
5113         return 0;
5114 }
5115
5116 /*
5117  * 7.1.29.  Set or Get the default context (SCTP_CONTEXT)
5118  * (chapter and verse is quoted at sctp_setsockopt_context())
5119  */
5120 static int sctp_getsockopt_context(struct sock *sk, int len,
5121                                    char __user *optval, int __user *optlen)
5122 {
5123         struct sctp_assoc_value params;
5124         struct sctp_sock *sp;
5125         struct sctp_association *asoc;
5126
5127         if (len < sizeof(struct sctp_assoc_value))
5128                 return -EINVAL;
5129
5130         len = sizeof(struct sctp_assoc_value);
5131
5132         if (copy_from_user(&params, optval, len))
5133                 return -EFAULT;
5134
5135         sp = sctp_sk(sk);
5136
5137         if (params.assoc_id != 0) {
5138                 asoc = sctp_id2assoc(sk, params.assoc_id);
5139                 if (!asoc)
5140                         return -EINVAL;
5141                 params.assoc_value = asoc->default_rcv_context;
5142         } else {
5143                 params.assoc_value = sp->default_rcv_context;
5144         }
5145
5146         if (put_user(len, optlen))
5147                 return -EFAULT;
5148         if (copy_to_user(optval, &params, len))
5149                 return -EFAULT;
5150
5151         return 0;
5152 }
5153
5154 /*
5155  * 8.1.16.  Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG)
5156  * This option will get or set the maximum size to put in any outgoing
5157  * SCTP DATA chunk.  If a message is larger than this size it will be
5158  * fragmented by SCTP into the specified size.  Note that the underlying
5159  * SCTP implementation may fragment into smaller sized chunks when the
5160  * PMTU of the underlying association is smaller than the value set by
5161  * the user.  The default value for this option is '0' which indicates
5162  * the user is NOT limiting fragmentation and only the PMTU will effect
5163  * SCTP's choice of DATA chunk size.  Note also that values set larger
5164  * than the maximum size of an IP datagram will effectively let SCTP
5165  * control fragmentation (i.e. the same as setting this option to 0).
5166  *
5167  * The following structure is used to access and modify this parameter:
5168  *
5169  * struct sctp_assoc_value {
5170  *   sctp_assoc_t assoc_id;
5171  *   uint32_t assoc_value;
5172  * };
5173  *
5174  * assoc_id:  This parameter is ignored for one-to-one style sockets.
5175  *    For one-to-many style sockets this parameter indicates which
5176  *    association the user is performing an action upon.  Note that if
5177  *    this field's value is zero then the endpoints default value is
5178  *    changed (effecting future associations only).
5179  * assoc_value:  This parameter specifies the maximum size in bytes.
5180  */
5181 static int sctp_getsockopt_maxseg(struct sock *sk, int len,
5182                                   char __user *optval, int __user *optlen)
5183 {
5184         struct sctp_assoc_value params;
5185         struct sctp_association *asoc;
5186
5187         if (len == sizeof(int)) {
5188                 pr_warn("Use of int in maxseg socket option deprecated\n");
5189                 pr_warn("Use struct sctp_assoc_value instead\n");
5190                 params.assoc_id = 0;
5191         } else if (len >= sizeof(struct sctp_assoc_value)) {
5192                 len = sizeof(struct sctp_assoc_value);
5193                 if (copy_from_user(&params, optval, sizeof(params)))
5194                         return -EFAULT;
5195         } else
5196                 return -EINVAL;
5197
5198         asoc = sctp_id2assoc(sk, params.assoc_id);
5199         if (!asoc && params.assoc_id && sctp_style(sk, UDP))
5200                 return -EINVAL;
5201
5202         if (asoc)
5203                 params.assoc_value = asoc->frag_point;
5204         else
5205                 params.assoc_value = sctp_sk(sk)->user_frag;
5206
5207         if (put_user(len, optlen))
5208                 return -EFAULT;
5209         if (len == sizeof(int)) {
5210                 if (copy_to_user(optval, &params.assoc_value, len))
5211                         return -EFAULT;
5212         } else {
5213                 if (copy_to_user(optval, &params, len))
5214                         return -EFAULT;
5215         }
5216
5217         return 0;
5218 }
5219
5220 /*
5221  * 7.1.24.  Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE)
5222  * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave())
5223  */
5224 static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len,
5225                                                char __user *optval, int __user *optlen)
5226 {
5227         int val;
5228
5229         if (len < sizeof(int))
5230                 return -EINVAL;
5231
5232         len = sizeof(int);
5233
5234         val = sctp_sk(sk)->frag_interleave;
5235         if (put_user(len, optlen))
5236                 return -EFAULT;
5237         if (copy_to_user(optval, &val, len))
5238                 return -EFAULT;
5239
5240         return 0;
5241 }
5242
5243 /*
5244  * 7.1.25.  Set or Get the sctp partial delivery point
5245  * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point())
5246  */
5247 static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len,
5248                                                   char __user *optval,
5249                                                   int __user *optlen)
5250 {
5251         u32 val;
5252
5253         if (len < sizeof(u32))
5254                 return -EINVAL;
5255
5256         len = sizeof(u32);
5257
5258         val = sctp_sk(sk)->pd_point;
5259         if (put_user(len, optlen))
5260                 return -EFAULT;
5261         if (copy_to_user(optval, &val, len))
5262                 return -EFAULT;
5263
5264         return 0;
5265 }
5266
5267 /*
5268  * 7.1.28.  Set or Get the maximum burst (SCTP_MAX_BURST)
5269  * (chapter and verse is quoted at sctp_setsockopt_maxburst())
5270  */
5271 static int sctp_getsockopt_maxburst(struct sock *sk, int len,
5272                                     char __user *optval,
5273                                     int __user *optlen)
5274 {
5275         struct sctp_assoc_value params;
5276         struct sctp_sock *sp;
5277         struct sctp_association *asoc;
5278
5279         if (len == sizeof(int)) {
5280                 pr_warn("Use of int in max_burst socket option deprecated\n");
5281                 pr_warn("Use struct sctp_assoc_value instead\n");
5282                 params.assoc_id = 0;
5283         } else if (len >= sizeof(struct sctp_assoc_value)) {
5284                 len = sizeof(struct sctp_assoc_value);
5285                 if (copy_from_user(&params, optval, len))
5286                         return -EFAULT;
5287         } else
5288                 return -EINVAL;
5289
5290         sp = sctp_sk(sk);
5291
5292         if (params.assoc_id != 0) {
5293                 asoc = sctp_id2assoc(sk, params.assoc_id);
5294                 if (!asoc)
5295                         return -EINVAL;
5296                 params.assoc_value = asoc->max_burst;
5297         } else
5298                 params.assoc_value = sp->max_burst;
5299
5300         if (len == sizeof(int)) {
5301                 if (copy_to_user(optval, &params.assoc_value, len))
5302                         return -EFAULT;
5303         } else {
5304                 if (copy_to_user(optval, &params, len))
5305                         return -EFAULT;
5306         }
5307
5308         return 0;
5309
5310 }
5311
5312 static int sctp_getsockopt_hmac_ident(struct sock *sk, int len,
5313                                     char __user *optval, int __user *optlen)
5314 {
5315         struct sctp_hmacalgo  __user *p = (void __user *)optval;
5316         struct sctp_hmac_algo_param *hmacs;
5317         __u16 data_len = 0;
5318         u32 num_idents;
5319         int i;
5320
5321         if (!sctp_auth_enable)
5322                 return -EACCES;
5323
5324         hmacs = sctp_sk(sk)->ep->auth_hmacs_list;
5325         data_len = ntohs(hmacs->param_hdr.length) - sizeof(sctp_paramhdr_t);
5326
5327         if (len < sizeof(struct sctp_hmacalgo) + data_len)
5328                 return -EINVAL;
5329
5330         len = sizeof(struct sctp_hmacalgo) + data_len;
5331         num_idents = data_len / sizeof(u16);
5332
5333         if (put_user(len, optlen))
5334                 return -EFAULT;
5335         if (put_user(num_idents, &p->shmac_num_idents))
5336                 return -EFAULT;
5337         for (i = 0; i < num_idents; i++) {
5338                 __u16 hmacid = ntohs(hmacs->hmac_ids[i]);
5339
5340                 if (copy_to_user(&p->shmac_idents[i], &hmacid, sizeof(__u16)))
5341                         return -EFAULT;
5342         }
5343         return 0;
5344 }
5345
5346 static int sctp_getsockopt_active_key(struct sock *sk, int len,
5347                                     char __user *optval, int __user *optlen)
5348 {
5349         struct sctp_authkeyid val;
5350         struct sctp_association *asoc;
5351
5352         if (!sctp_auth_enable)
5353                 return -EACCES;
5354
5355         if (len < sizeof(struct sctp_authkeyid))
5356                 return -EINVAL;
5357         if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
5358                 return -EFAULT;
5359
5360         asoc = sctp_id2assoc(sk, val.scact_assoc_id);
5361         if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP))
5362                 return -EINVAL;
5363
5364         if (asoc)
5365                 val.scact_keynumber = asoc->active_key_id;
5366         else
5367                 val.scact_keynumber = sctp_sk(sk)->ep->active_key_id;
5368
5369         len = sizeof(struct sctp_authkeyid);
5370         if (put_user(len, optlen))
5371                 return -EFAULT;
5372         if (copy_to_user(optval, &val, len))
5373                 return -EFAULT;
5374
5375         return 0;
5376 }
5377
5378 static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len,
5379                                     char __user *optval, int __user *optlen)
5380 {
5381         struct sctp_authchunks __user *p = (void __user *)optval;
5382         struct sctp_authchunks val;
5383         struct sctp_association *asoc;
5384         struct sctp_chunks_param *ch;
5385         u32    num_chunks = 0;
5386         char __user *to;
5387
5388         if (!sctp_auth_enable)
5389                 return -EACCES;
5390
5391         if (len < sizeof(struct sctp_authchunks))
5392                 return -EINVAL;
5393
5394         if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
5395                 return -EFAULT;
5396
5397         to = p->gauth_chunks;
5398         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5399         if (!asoc)
5400                 return -EINVAL;
5401
5402         ch = asoc->peer.peer_chunks;
5403         if (!ch)
5404                 goto num;
5405
5406         /* See if the user provided enough room for all the data */
5407         num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
5408         if (len < num_chunks)
5409                 return -EINVAL;
5410
5411         if (copy_to_user(to, ch->chunks, num_chunks))
5412                 return -EFAULT;
5413 num:
5414         len = sizeof(struct sctp_authchunks) + num_chunks;
5415         if (put_user(len, optlen)) return -EFAULT;
5416         if (put_user(num_chunks, &p->gauth_number_of_chunks))
5417                 return -EFAULT;
5418         return 0;
5419 }
5420
5421 static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len,
5422                                     char __user *optval, int __user *optlen)
5423 {
5424         struct sctp_authchunks __user *p = (void __user *)optval;
5425         struct sctp_authchunks val;
5426         struct sctp_association *asoc;
5427         struct sctp_chunks_param *ch;
5428         u32    num_chunks = 0;
5429         char __user *to;
5430
5431         if (!sctp_auth_enable)
5432                 return -EACCES;
5433
5434         if (len < sizeof(struct sctp_authchunks))
5435                 return -EINVAL;
5436
5437         if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
5438                 return -EFAULT;
5439
5440         to = p->gauth_chunks;
5441         asoc = sctp_id2assoc(sk, val.gauth_assoc_id);
5442         if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP))
5443                 return -EINVAL;
5444
5445         if (asoc)
5446                 ch = (struct sctp_chunks_param*)asoc->c.auth_chunks;
5447         else
5448                 ch = sctp_sk(sk)->ep->auth_chunk_list;
5449
5450         if (!ch)
5451                 goto num;
5452
5453         num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t);
5454         if (len < sizeof(struct sctp_authchunks) + num_chunks)
5455                 return -EINVAL;
5456
5457         if (copy_to_user(to, ch->chunks, num_chunks))
5458                 return -EFAULT;
5459 num:
5460         len = sizeof(struct sctp_authchunks) + num_chunks;
5461         if (put_user(len, optlen))
5462                 return -EFAULT;
5463         if (put_user(num_chunks, &p->gauth_number_of_chunks))
5464                 return -EFAULT;
5465
5466         return 0;
5467 }
5468
5469 /*
5470  * 8.2.5.  Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER)
5471  * This option gets the current number of associations that are attached
5472  * to a one-to-many style socket.  The option value is an uint32_t.
5473  */
5474 static int sctp_getsockopt_assoc_number(struct sock *sk, int len,
5475                                     char __user *optval, int __user *optlen)
5476 {
5477         struct sctp_sock *sp = sctp_sk(sk);
5478         struct sctp_association *asoc;
5479         u32 val = 0;
5480
5481         if (sctp_style(sk, TCP))
5482                 return -EOPNOTSUPP;
5483
5484         if (len < sizeof(u32))
5485                 return -EINVAL;
5486
5487         len = sizeof(u32);
5488
5489         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5490                 val++;
5491         }
5492
5493         if (put_user(len, optlen))
5494                 return -EFAULT;
5495         if (copy_to_user(optval, &val, len))
5496                 return -EFAULT;
5497
5498         return 0;
5499 }
5500
5501 /*
5502  * 8.1.23 SCTP_AUTO_ASCONF
5503  * See the corresponding setsockopt entry as description
5504  */
5505 static int sctp_getsockopt_auto_asconf(struct sock *sk, int len,
5506                                    char __user *optval, int __user *optlen)
5507 {
5508         int val = 0;
5509
5510         if (len < sizeof(int))
5511                 return -EINVAL;
5512
5513         len = sizeof(int);
5514         if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk))
5515                 val = 1;
5516         if (put_user(len, optlen))
5517                 return -EFAULT;
5518         if (copy_to_user(optval, &val, len))
5519                 return -EFAULT;
5520         return 0;
5521 }
5522
5523 /*
5524  * 8.2.6. Get the Current Identifiers of Associations
5525  *        (SCTP_GET_ASSOC_ID_LIST)
5526  *
5527  * This option gets the current list of SCTP association identifiers of
5528  * the SCTP associations handled by a one-to-many style socket.
5529  */
5530 static int sctp_getsockopt_assoc_ids(struct sock *sk, int len,
5531                                     char __user *optval, int __user *optlen)
5532 {
5533         struct sctp_sock *sp = sctp_sk(sk);
5534         struct sctp_association *asoc;
5535         struct sctp_assoc_ids *ids;
5536         u32 num = 0;
5537
5538         if (sctp_style(sk, TCP))
5539                 return -EOPNOTSUPP;
5540
5541         if (len < sizeof(struct sctp_assoc_ids))
5542                 return -EINVAL;
5543
5544         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5545                 num++;
5546         }
5547
5548         if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num)
5549                 return -EINVAL;
5550
5551         len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num;
5552
5553         ids = kmalloc(len, GFP_KERNEL);
5554         if (unlikely(!ids))
5555                 return -ENOMEM;
5556
5557         ids->gaids_number_of_ids = num;
5558         num = 0;
5559         list_for_each_entry(asoc, &(sp->ep->asocs), asocs) {
5560                 ids->gaids_assoc_id[num++] = asoc->assoc_id;
5561         }
5562
5563         if (put_user(len, optlen) || copy_to_user(optval, ids, len)) {
5564                 kfree(ids);
5565                 return -EFAULT;
5566         }
5567
5568         kfree(ids);
5569         return 0;
5570 }
5571
5572 SCTP_STATIC int sctp_getsockopt(struct sock *sk, int level, int optname,
5573                                 char __user *optval, int __user *optlen)
5574 {
5575         int retval = 0;
5576         int len;
5577
5578         SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n",
5579                           sk, optname);
5580
5581         /* I can hardly begin to describe how wrong this is.  This is
5582          * so broken as to be worse than useless.  The API draft
5583          * REALLY is NOT helpful here...  I am not convinced that the
5584          * semantics of getsockopt() with a level OTHER THAN SOL_SCTP
5585          * are at all well-founded.
5586          */
5587         if (level != SOL_SCTP) {
5588                 struct sctp_af *af = sctp_sk(sk)->pf->af;
5589
5590                 retval = af->getsockopt(sk, level, optname, optval, optlen);
5591                 return retval;
5592         }
5593
5594         if (get_user(len, optlen))
5595                 return -EFAULT;
5596
5597         if (len < 0)
5598                 return -EINVAL;
5599
5600         sctp_lock_sock(sk);
5601
5602         switch (optname) {
5603         case SCTP_STATUS:
5604                 retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen);
5605                 break;
5606         case SCTP_DISABLE_FRAGMENTS:
5607                 retval = sctp_getsockopt_disable_fragments(sk, len, optval,
5608                                                            optlen);
5609                 break;
5610         case SCTP_EVENTS:
5611                 retval = sctp_getsockopt_events(sk, len, optval, optlen);
5612                 break;
5613         case SCTP_AUTOCLOSE:
5614                 retval = sctp_getsockopt_autoclose(sk, len, optval, optlen);
5615                 break;
5616         case SCTP_SOCKOPT_PEELOFF:
5617                 retval = sctp_getsockopt_peeloff(sk, len, optval, optlen);
5618                 break;
5619         case SCTP_PEER_ADDR_PARAMS:
5620                 retval = sctp_getsockopt_peer_addr_params(sk, len, optval,
5621                                                           optlen);
5622                 break;
5623         case SCTP_DELAYED_SACK:
5624                 retval = sctp_getsockopt_delayed_ack(sk, len, optval,
5625                                                           optlen);
5626                 break;
5627         case SCTP_INITMSG:
5628                 retval = sctp_getsockopt_initmsg(sk, len, optval, optlen);
5629                 break;
5630         case SCTP_GET_PEER_ADDRS:
5631                 retval = sctp_getsockopt_peer_addrs(sk, len, optval,
5632                                                     optlen);
5633                 break;
5634         case SCTP_GET_LOCAL_ADDRS:
5635                 retval = sctp_getsockopt_local_addrs(sk, len, optval,
5636                                                      optlen);
5637                 break;
5638         case SCTP_SOCKOPT_CONNECTX3:
5639                 retval = sctp_getsockopt_connectx3(sk, len, optval, optlen);
5640                 break;
5641         case SCTP_DEFAULT_SEND_PARAM:
5642                 retval = sctp_getsockopt_default_send_param(sk, len,
5643                                                             optval, optlen);
5644                 break;
5645         case SCTP_PRIMARY_ADDR:
5646                 retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen);
5647                 break;
5648         case SCTP_NODELAY:
5649                 retval = sctp_getsockopt_nodelay(sk, len, optval, optlen);
5650                 break;
5651         case SCTP_RTOINFO:
5652                 retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen);
5653                 break;
5654         case SCTP_ASSOCINFO:
5655                 retval = sctp_getsockopt_associnfo(sk, len, optval, optlen);
5656                 break;
5657         case SCTP_I_WANT_MAPPED_V4_ADDR:
5658                 retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen);
5659                 break;
5660         case SCTP_MAXSEG:
5661                 retval = sctp_getsockopt_maxseg(sk, len, optval, optlen);
5662                 break;
5663         case SCTP_GET_PEER_ADDR_INFO:
5664                 retval = sctp_getsockopt_peer_addr_info(sk, len, optval,
5665                                                         optlen);
5666                 break;
5667         case SCTP_ADAPTATION_LAYER:
5668                 retval = sctp_getsockopt_adaptation_layer(sk, len, optval,
5669                                                         optlen);
5670                 break;
5671         case SCTP_CONTEXT:
5672                 retval = sctp_getsockopt_context(sk, len, optval, optlen);
5673                 break;
5674         case SCTP_FRAGMENT_INTERLEAVE:
5675                 retval = sctp_getsockopt_fragment_interleave(sk, len, optval,
5676                                                              optlen);
5677                 break;
5678         case SCTP_PARTIAL_DELIVERY_POINT:
5679                 retval = sctp_getsockopt_partial_delivery_point(sk, len, optval,
5680                                                                 optlen);
5681                 break;
5682         case SCTP_MAX_BURST:
5683                 retval = sctp_getsockopt_maxburst(sk, len, optval, optlen);
5684                 break;
5685         case SCTP_AUTH_KEY:
5686         case SCTP_AUTH_CHUNK:
5687         case SCTP_AUTH_DELETE_KEY:
5688                 retval = -EOPNOTSUPP;
5689                 break;
5690         case SCTP_HMAC_IDENT:
5691                 retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen);
5692                 break;
5693         case SCTP_AUTH_ACTIVE_KEY:
5694                 retval = sctp_getsockopt_active_key(sk, len, optval, optlen);
5695                 break;
5696         case SCTP_PEER_AUTH_CHUNKS:
5697                 retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval,
5698                                                         optlen);
5699                 break;
5700         case SCTP_LOCAL_AUTH_CHUNKS:
5701                 retval = sctp_getsockopt_local_auth_chunks(sk, len, optval,
5702                                                         optlen);
5703                 break;
5704         case SCTP_GET_ASSOC_NUMBER:
5705                 retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen);
5706                 break;
5707         case SCTP_GET_ASSOC_ID_LIST:
5708                 retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen);
5709                 break;
5710         case SCTP_AUTO_ASCONF:
5711                 retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen);
5712                 break;
5713         default:
5714                 retval = -ENOPROTOOPT;
5715                 break;
5716         }
5717
5718         sctp_release_sock(sk);
5719         return retval;
5720 }
5721
5722 static void sctp_hash(struct sock *sk)
5723 {
5724         /* STUB */
5725 }
5726
5727 static void sctp_unhash(struct sock *sk)
5728 {
5729         /* STUB */
5730 }
5731
5732 /* Check if port is acceptable.  Possibly find first available port.
5733  *
5734  * The port hash table (contained in the 'global' SCTP protocol storage
5735  * returned by struct sctp_protocol *sctp_get_protocol()). The hash
5736  * table is an array of 4096 lists (sctp_bind_hashbucket). Each
5737  * list (the list number is the port number hashed out, so as you
5738  * would expect from a hash function, all the ports in a given list have
5739  * such a number that hashes out to the same list number; you were
5740  * expecting that, right?); so each list has a set of ports, with a
5741  * link to the socket (struct sock) that uses it, the port number and
5742  * a fastreuse flag (FIXME: NPI ipg).
5743  */
5744 static struct sctp_bind_bucket *sctp_bucket_create(
5745         struct sctp_bind_hashbucket *head, unsigned short snum);
5746
5747 static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr)
5748 {
5749         struct sctp_bind_hashbucket *head; /* hash list */
5750         struct sctp_bind_bucket *pp; /* hash list port iterator */
5751         struct hlist_node *node;
5752         unsigned short snum;
5753         int ret;
5754
5755         snum = ntohs(addr->v4.sin_port);
5756
5757         SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum);
5758         sctp_local_bh_disable();
5759
5760         if (snum == 0) {
5761                 /* Search for an available port. */
5762                 int low, high, remaining, index;
5763                 unsigned int rover;
5764
5765                 inet_get_local_port_range(&low, &high);
5766                 remaining = (high - low) + 1;
5767                 rover = net_random() % remaining + low;
5768
5769                 do {
5770                         rover++;
5771                         if ((rover < low) || (rover > high))
5772                                 rover = low;
5773                         if (inet_is_reserved_local_port(rover))
5774                                 continue;
5775                         index = sctp_phashfn(rover);
5776                         head = &sctp_port_hashtable[index];
5777                         sctp_spin_lock(&head->lock);
5778                         sctp_for_each_hentry(pp, node, &head->chain)
5779                                 if (pp->port == rover)
5780                                         goto next;
5781                         break;
5782                 next:
5783                         sctp_spin_unlock(&head->lock);
5784                 } while (--remaining > 0);
5785
5786                 /* Exhausted local port range during search? */
5787                 ret = 1;
5788                 if (remaining <= 0)
5789                         goto fail;
5790
5791                 /* OK, here is the one we will use.  HEAD (the port
5792                  * hash table list entry) is non-NULL and we hold it's
5793                  * mutex.
5794                  */
5795                 snum = rover;
5796         } else {
5797                 /* We are given an specific port number; we verify
5798                  * that it is not being used. If it is used, we will
5799                  * exahust the search in the hash list corresponding
5800                  * to the port number (snum) - we detect that with the
5801                  * port iterator, pp being NULL.
5802                  */
5803                 head = &sctp_port_hashtable[sctp_phashfn(snum)];
5804                 sctp_spin_lock(&head->lock);
5805                 sctp_for_each_hentry(pp, node, &head->chain) {
5806                         if (pp->port == snum)
5807                                 goto pp_found;
5808                 }
5809         }
5810         pp = NULL;
5811         goto pp_not_found;
5812 pp_found:
5813         if (!hlist_empty(&pp->owner)) {
5814                 /* We had a port hash table hit - there is an
5815                  * available port (pp != NULL) and it is being
5816                  * used by other socket (pp->owner not empty); that other
5817                  * socket is going to be sk2.
5818                  */
5819                 int reuse = sk->sk_reuse;
5820                 struct sock *sk2;
5821
5822                 SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n");
5823                 if (pp->fastreuse && sk->sk_reuse &&
5824                         sk->sk_state != SCTP_SS_LISTENING)
5825                         goto success;
5826
5827                 /* Run through the list of sockets bound to the port
5828                  * (pp->port) [via the pointers bind_next and
5829                  * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one,
5830                  * we get the endpoint they describe and run through
5831                  * the endpoint's list of IP (v4 or v6) addresses,
5832                  * comparing each of the addresses with the address of
5833                  * the socket sk. If we find a match, then that means
5834                  * that this port/socket (sk) combination are already
5835                  * in an endpoint.
5836                  */
5837                 sk_for_each_bound(sk2, node, &pp->owner) {
5838                         struct sctp_endpoint *ep2;
5839                         ep2 = sctp_sk(sk2)->ep;
5840
5841                         if (sk == sk2 ||
5842                             (reuse && sk2->sk_reuse &&
5843                              sk2->sk_state != SCTP_SS_LISTENING))
5844                                 continue;
5845
5846                         if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr,
5847                                                  sctp_sk(sk2), sctp_sk(sk))) {
5848                                 ret = (long)sk2;
5849                                 goto fail_unlock;
5850                         }
5851                 }
5852                 SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n");
5853         }
5854 pp_not_found:
5855         /* If there was a hash table miss, create a new port.  */
5856         ret = 1;
5857         if (!pp && !(pp = sctp_bucket_create(head, snum)))
5858                 goto fail_unlock;
5859
5860         /* In either case (hit or miss), make sure fastreuse is 1 only
5861          * if sk->sk_reuse is too (that is, if the caller requested
5862          * SO_REUSEADDR on this socket -sk-).
5863          */
5864         if (hlist_empty(&pp->owner)) {
5865                 if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING)
5866                         pp->fastreuse = 1;
5867                 else
5868                         pp->fastreuse = 0;
5869         } else if (pp->fastreuse &&
5870                 (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING))
5871                 pp->fastreuse = 0;
5872
5873         /* We are set, so fill up all the data in the hash table
5874          * entry, tie the socket list information with the rest of the
5875          * sockets FIXME: Blurry, NPI (ipg).
5876          */
5877 success:
5878         if (!sctp_sk(sk)->bind_hash) {
5879                 inet_sk(sk)->inet_num = snum;
5880                 sk_add_bind_node(sk, &pp->owner);
5881                 sctp_sk(sk)->bind_hash = pp;
5882         }
5883         ret = 0;
5884
5885 fail_unlock:
5886         sctp_spin_unlock(&head->lock);
5887
5888 fail:
5889         sctp_local_bh_enable();
5890         return ret;
5891 }
5892
5893 /* Assign a 'snum' port to the socket.  If snum == 0, an ephemeral
5894  * port is requested.
5895  */
5896 static int sctp_get_port(struct sock *sk, unsigned short snum)
5897 {
5898         long ret;
5899         union sctp_addr addr;
5900         struct sctp_af *af = sctp_sk(sk)->pf->af;
5901
5902         /* Set up a dummy address struct from the sk. */
5903         af->from_sk(&addr, sk);
5904         addr.v4.sin_port = htons(snum);
5905
5906         /* Note: sk->sk_num gets filled in if ephemeral port request. */
5907         ret = sctp_get_port_local(sk, &addr);
5908
5909         return ret ? 1 : 0;
5910 }
5911
5912 /*
5913  *  Move a socket to LISTENING state.
5914  */
5915 SCTP_STATIC int sctp_listen_start(struct sock *sk, int backlog)
5916 {
5917         struct sctp_sock *sp = sctp_sk(sk);
5918         struct sctp_endpoint *ep = sp->ep;
5919         struct crypto_hash *tfm = NULL;
5920
5921         /* Allocate HMAC for generating cookie. */
5922         if (!sctp_sk(sk)->hmac && sctp_hmac_alg) {
5923                 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC);
5924                 if (IS_ERR(tfm)) {
5925                         if (net_ratelimit()) {
5926                                 pr_info("failed to load transform for %s: %ld\n",
5927                                         sctp_hmac_alg, PTR_ERR(tfm));
5928                         }
5929                         return -ENOSYS;
5930                 }
5931                 sctp_sk(sk)->hmac = tfm;
5932         }
5933
5934         /*
5935          * If a bind() or sctp_bindx() is not called prior to a listen()
5936          * call that allows new associations to be accepted, the system
5937          * picks an ephemeral port and will choose an address set equivalent
5938          * to binding with a wildcard address.
5939          *
5940          * This is not currently spelled out in the SCTP sockets
5941          * extensions draft, but follows the practice as seen in TCP
5942          * sockets.
5943          *
5944          */
5945         sk->sk_state = SCTP_SS_LISTENING;
5946         if (!ep->base.bind_addr.port) {
5947                 if (sctp_autobind(sk))
5948                         return -EAGAIN;
5949         } else {
5950                 if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
5951                         sk->sk_state = SCTP_SS_CLOSED;
5952                         return -EADDRINUSE;
5953                 }
5954         }
5955
5956         sk->sk_max_ack_backlog = backlog;
5957         sctp_hash_endpoint(ep);
5958         return 0;
5959 }
5960
5961 /*
5962  * 4.1.3 / 5.1.3 listen()
5963  *
5964  *   By default, new associations are not accepted for UDP style sockets.
5965  *   An application uses listen() to mark a socket as being able to
5966  *   accept new associations.
5967  *
5968  *   On TCP style sockets, applications use listen() to ready the SCTP
5969  *   endpoint for accepting inbound associations.
5970  *
5971  *   On both types of endpoints a backlog of '0' disables listening.
5972  *
5973  *  Move a socket to LISTENING state.
5974  */
5975 int sctp_inet_listen(struct socket *sock, int backlog)
5976 {
5977         struct sock *sk = sock->sk;
5978         struct sctp_endpoint *ep = sctp_sk(sk)->ep;
5979         int err = -EINVAL;
5980
5981         if (unlikely(backlog < 0))
5982                 return err;
5983
5984         sctp_lock_sock(sk);
5985
5986         /* Peeled-off sockets are not allowed to listen().  */
5987         if (sctp_style(sk, UDP_HIGH_BANDWIDTH))
5988                 goto out;
5989
5990         if (sock->state != SS_UNCONNECTED)
5991                 goto out;
5992
5993         /* If backlog is zero, disable listening. */
5994         if (!backlog) {
5995                 if (sctp_sstate(sk, CLOSED))
5996                         goto out;
5997
5998                 err = 0;
5999                 sctp_unhash_endpoint(ep);
6000                 sk->sk_state = SCTP_SS_CLOSED;
6001                 if (sk->sk_reuse)
6002                         sctp_sk(sk)->bind_hash->fastreuse = 1;
6003                 goto out;
6004         }
6005
6006         /* If we are already listening, just update the backlog */
6007         if (sctp_sstate(sk, LISTENING))
6008                 sk->sk_max_ack_backlog = backlog;
6009         else {
6010                 err = sctp_listen_start(sk, backlog);
6011                 if (err)
6012                         goto out;
6013         }
6014
6015         err = 0;
6016 out:
6017         sctp_release_sock(sk);
6018         return err;
6019 }
6020
6021 /*
6022  * This function is done by modeling the current datagram_poll() and the
6023  * tcp_poll().  Note that, based on these implementations, we don't
6024  * lock the socket in this function, even though it seems that,
6025  * ideally, locking or some other mechanisms can be used to ensure
6026  * the integrity of the counters (sndbuf and wmem_alloc) used
6027  * in this place.  We assume that we don't need locks either until proven
6028  * otherwise.
6029  *
6030  * Another thing to note is that we include the Async I/O support
6031  * here, again, by modeling the current TCP/UDP code.  We don't have
6032  * a good way to test with it yet.
6033  */
6034 unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait)
6035 {
6036         struct sock *sk = sock->sk;
6037         struct sctp_sock *sp = sctp_sk(sk);
6038         unsigned int mask;
6039
6040         poll_wait(file, sk_sleep(sk), wait);
6041
6042         /* A TCP-style listening socket becomes readable when the accept queue
6043          * is not empty.
6044          */
6045         if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))
6046                 return (!list_empty(&sp->ep->asocs)) ?
6047                         (POLLIN | POLLRDNORM) : 0;
6048
6049         mask = 0;
6050
6051         /* Is there any exceptional events?  */
6052         if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue))
6053                 mask |= POLLERR;
6054         if (sk->sk_shutdown & RCV_SHUTDOWN)
6055                 mask |= POLLRDHUP | POLLIN | POLLRDNORM;
6056         if (sk->sk_shutdown == SHUTDOWN_MASK)
6057                 mask |= POLLHUP;
6058
6059         /* Is it readable?  Reconsider this code with TCP-style support.  */
6060         if (!skb_queue_empty(&sk->sk_receive_queue))
6061                 mask |= POLLIN | POLLRDNORM;
6062
6063         /* The association is either gone or not ready.  */
6064         if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED))
6065                 return mask;
6066
6067         /* Is it writable?  */
6068         if (sctp_writeable(sk)) {
6069                 mask |= POLLOUT | POLLWRNORM;
6070         } else {
6071                 set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags);
6072                 /*
6073                  * Since the socket is not locked, the buffer
6074                  * might be made available after the writeable check and
6075                  * before the bit is set.  This could cause a lost I/O
6076                  * signal.  tcp_poll() has a race breaker for this race
6077                  * condition.  Based on their implementation, we put
6078                  * in the following code to cover it as well.
6079                  */
6080                 if (sctp_writeable(sk))
6081                         mask |= POLLOUT | POLLWRNORM;
6082         }
6083         return mask;
6084 }
6085
6086 /********************************************************************
6087  * 2nd Level Abstractions
6088  ********************************************************************/
6089
6090 static struct sctp_bind_bucket *sctp_bucket_create(
6091         struct sctp_bind_hashbucket *head, unsigned short snum)
6092 {
6093         struct sctp_bind_bucket *pp;
6094
6095         pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
6096         if (pp) {
6097                 SCTP_DBG_OBJCNT_INC(bind_bucket);
6098                 pp->port = snum;
6099                 pp->fastreuse = 0;
6100                 INIT_HLIST_HEAD(&pp->owner);
6101                 hlist_add_head(&pp->node, &head->chain);
6102         }
6103         return pp;
6104 }
6105
6106 /* Caller must hold hashbucket lock for this tb with local BH disabled */
6107 static void sctp_bucket_destroy(struct sctp_bind_bucket *pp)
6108 {
6109         if (pp && hlist_empty(&pp->owner)) {
6110                 __hlist_del(&pp->node);
6111                 kmem_cache_free(sctp_bucket_cachep, pp);
6112                 SCTP_DBG_OBJCNT_DEC(bind_bucket);
6113         }
6114 }
6115
6116 /* Release this socket's reference to a local port.  */
6117 static inline void __sctp_put_port(struct sock *sk)
6118 {
6119         struct sctp_bind_hashbucket *head =
6120                 &sctp_port_hashtable[sctp_phashfn(inet_sk(sk)->inet_num)];
6121         struct sctp_bind_bucket *pp;
6122
6123         sctp_spin_lock(&head->lock);
6124         pp = sctp_sk(sk)->bind_hash;
6125         __sk_del_bind_node(sk);
6126         sctp_sk(sk)->bind_hash = NULL;
6127         inet_sk(sk)->inet_num = 0;
6128         sctp_bucket_destroy(pp);
6129         sctp_spin_unlock(&head->lock);
6130 }
6131
6132 void sctp_put_port(struct sock *sk)
6133 {
6134         sctp_local_bh_disable();
6135         __sctp_put_port(sk);
6136         sctp_local_bh_enable();
6137 }
6138
6139 /*
6140  * The system picks an ephemeral port and choose an address set equivalent
6141  * to binding with a wildcard address.
6142  * One of those addresses will be the primary address for the association.
6143  * This automatically enables the multihoming capability of SCTP.
6144  */
6145 static int sctp_autobind(struct sock *sk)
6146 {
6147         union sctp_addr autoaddr;
6148         struct sctp_af *af;
6149         __be16 port;
6150
6151         /* Initialize a local sockaddr structure to INADDR_ANY. */
6152         af = sctp_sk(sk)->pf->af;
6153
6154         port = htons(inet_sk(sk)->inet_num);
6155         af->inaddr_any(&autoaddr, port);
6156
6157         return sctp_do_bind(sk, &autoaddr, af->sockaddr_len);
6158 }
6159
6160 /* Parse out IPPROTO_SCTP CMSG headers.  Perform only minimal validation.
6161  *
6162  * From RFC 2292
6163  * 4.2 The cmsghdr Structure *
6164  *
6165  * When ancillary data is sent or received, any number of ancillary data
6166  * objects can be specified by the msg_control and msg_controllen members of
6167  * the msghdr structure, because each object is preceded by
6168  * a cmsghdr structure defining the object's length (the cmsg_len member).
6169  * Historically Berkeley-derived implementations have passed only one object
6170  * at a time, but this API allows multiple objects to be
6171  * passed in a single call to sendmsg() or recvmsg(). The following example
6172  * shows two ancillary data objects in a control buffer.
6173  *
6174  *   |<--------------------------- msg_controllen -------------------------->|
6175  *   |                                                                       |
6176  *
6177  *   |<----- ancillary data object ----->|<----- ancillary data object ----->|
6178  *
6179  *   |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->|
6180  *   |                                   |                                   |
6181  *
6182  *   |<---------- cmsg_len ---------->|  |<--------- cmsg_len ----------->|  |
6183  *
6184  *   |<--------- CMSG_LEN() --------->|  |<-------- CMSG_LEN() ---------->|  |
6185  *   |                                |  |                                |  |
6186  *
6187  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6188  *   |cmsg_|cmsg_|cmsg_|XX|           |XX|cmsg_|cmsg_|cmsg_|XX|           |XX|
6189  *
6190  *   |len  |level|type |XX|cmsg_data[]|XX|len  |level|type |XX|cmsg_data[]|XX|
6191  *
6192  *   +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+
6193  *    ^
6194  *    |
6195  *
6196  * msg_control
6197  * points here
6198  */
6199 SCTP_STATIC int sctp_msghdr_parse(const struct msghdr *msg,
6200                                   sctp_cmsgs_t *cmsgs)
6201 {
6202         struct cmsghdr *cmsg;
6203         struct msghdr *my_msg = (struct msghdr *)msg;
6204
6205         for (cmsg = CMSG_FIRSTHDR(msg);
6206              cmsg != NULL;
6207              cmsg = CMSG_NXTHDR(my_msg, cmsg)) {
6208                 if (!CMSG_OK(my_msg, cmsg))
6209                         return -EINVAL;
6210
6211                 /* Should we parse this header or ignore?  */
6212                 if (cmsg->cmsg_level != IPPROTO_SCTP)
6213                         continue;
6214
6215                 /* Strictly check lengths following example in SCM code.  */
6216                 switch (cmsg->cmsg_type) {
6217                 case SCTP_INIT:
6218                         /* SCTP Socket API Extension
6219                          * 5.2.1 SCTP Initiation Structure (SCTP_INIT)
6220                          *
6221                          * This cmsghdr structure provides information for
6222                          * initializing new SCTP associations with sendmsg().
6223                          * The SCTP_INITMSG socket option uses this same data
6224                          * structure.  This structure is not used for
6225                          * recvmsg().
6226                          *
6227                          * cmsg_level    cmsg_type      cmsg_data[]
6228                          * ------------  ------------   ----------------------
6229                          * IPPROTO_SCTP  SCTP_INIT      struct sctp_initmsg
6230                          */
6231                         if (cmsg->cmsg_len !=
6232                             CMSG_LEN(sizeof(struct sctp_initmsg)))
6233                                 return -EINVAL;
6234                         cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg);
6235                         break;
6236
6237                 case SCTP_SNDRCV:
6238                         /* SCTP Socket API Extension
6239                          * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV)
6240                          *
6241                          * This cmsghdr structure specifies SCTP options for
6242                          * sendmsg() and describes SCTP header information
6243                          * about a received message through recvmsg().
6244                          *
6245                          * cmsg_level    cmsg_type      cmsg_data[]
6246                          * ------------  ------------   ----------------------
6247                          * IPPROTO_SCTP  SCTP_SNDRCV    struct sctp_sndrcvinfo
6248                          */
6249                         if (cmsg->cmsg_len !=
6250                             CMSG_LEN(sizeof(struct sctp_sndrcvinfo)))
6251                                 return -EINVAL;
6252
6253                         cmsgs->info =
6254                                 (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg);
6255
6256                         /* Minimally, validate the sinfo_flags. */
6257                         if (cmsgs->info->sinfo_flags &
6258                             ~(SCTP_UNORDERED | SCTP_ADDR_OVER |
6259                               SCTP_SACK_IMMEDIATELY |
6260                               SCTP_ABORT | SCTP_EOF))
6261                                 return -EINVAL;
6262                         break;
6263
6264                 default:
6265                         return -EINVAL;
6266                 }
6267         }
6268         return 0;
6269 }
6270
6271 /*
6272  * Wait for a packet..
6273  * Note: This function is the same function as in core/datagram.c
6274  * with a few modifications to make lksctp work.
6275  */
6276 static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p)
6277 {
6278         int error;
6279         DEFINE_WAIT(wait);
6280
6281         prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
6282
6283         /* Socket errors? */
6284         error = sock_error(sk);
6285         if (error)
6286                 goto out;
6287
6288         if (!skb_queue_empty(&sk->sk_receive_queue))
6289                 goto ready;
6290
6291         /* Socket shut down?  */
6292         if (sk->sk_shutdown & RCV_SHUTDOWN)
6293                 goto out;
6294
6295         /* Sequenced packets can come disconnected.  If so we report the
6296          * problem.
6297          */
6298         error = -ENOTCONN;
6299
6300         /* Is there a good reason to think that we may receive some data?  */
6301         if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING))
6302                 goto out;
6303
6304         /* Handle signals.  */
6305         if (signal_pending(current))
6306                 goto interrupted;
6307
6308         /* Let another process have a go.  Since we are going to sleep
6309          * anyway.  Note: This may cause odd behaviors if the message
6310          * does not fit in the user's buffer, but this seems to be the
6311          * only way to honor MSG_DONTWAIT realistically.
6312          */
6313         sctp_release_sock(sk);
6314         *timeo_p = schedule_timeout(*timeo_p);
6315         sctp_lock_sock(sk);
6316
6317 ready:
6318         finish_wait(sk_sleep(sk), &wait);
6319         return 0;
6320
6321 interrupted:
6322         error = sock_intr_errno(*timeo_p);
6323
6324 out:
6325         finish_wait(sk_sleep(sk), &wait);
6326         *err = error;
6327         return error;
6328 }
6329
6330 /* Receive a datagram.
6331  * Note: This is pretty much the same routine as in core/datagram.c
6332  * with a few changes to make lksctp work.
6333  */
6334 static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags,
6335                                               int noblock, int *err)
6336 {
6337         int error;
6338         struct sk_buff *skb;
6339         long timeo;
6340
6341         timeo = sock_rcvtimeo(sk, noblock);
6342
6343         SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n",
6344                           timeo, MAX_SCHEDULE_TIMEOUT);
6345
6346         do {
6347                 /* Again only user level code calls this function,
6348                  * so nothing interrupt level
6349                  * will suddenly eat the receive_queue.
6350                  *
6351                  *  Look at current nfs client by the way...
6352                  *  However, this function was correct in any case. 8)
6353                  */
6354                 if (flags & MSG_PEEK) {
6355                         spin_lock_bh(&sk->sk_receive_queue.lock);
6356                         skb = skb_peek(&sk->sk_receive_queue);
6357                         if (skb)
6358                                 atomic_inc(&skb->users);
6359                         spin_unlock_bh(&sk->sk_receive_queue.lock);
6360                 } else {
6361                         skb = skb_dequeue(&sk->sk_receive_queue);
6362                 }
6363
6364                 if (skb)
6365                         return skb;
6366
6367                 /* Caller is allowed not to check sk->sk_err before calling. */
6368                 error = sock_error(sk);
6369                 if (error)
6370                         goto no_packet;
6371
6372                 if (sk->sk_shutdown & RCV_SHUTDOWN)
6373                         break;
6374
6375                 /* User doesn't want to wait.  */
6376                 error = -EAGAIN;
6377                 if (!timeo)
6378                         goto no_packet;
6379         } while (sctp_wait_for_packet(sk, err, &timeo) == 0);
6380
6381         return NULL;
6382
6383 no_packet:
6384         *err = error;
6385         return NULL;
6386 }
6387
6388 /* If sndbuf has changed, wake up per association sndbuf waiters.  */
6389 static void __sctp_write_space(struct sctp_association *asoc)
6390 {
6391         struct sock *sk = asoc->base.sk;
6392         struct socket *sock = sk->sk_socket;
6393
6394         if ((sctp_wspace(asoc) > 0) && sock) {
6395                 if (waitqueue_active(&asoc->wait))
6396                         wake_up_interruptible(&asoc->wait);
6397
6398                 if (sctp_writeable(sk)) {
6399                         wait_queue_head_t *wq = sk_sleep(sk);
6400
6401                         if (wq && waitqueue_active(wq))
6402                                 wake_up_interruptible(wq);
6403
6404                         /* Note that we try to include the Async I/O support
6405                          * here by modeling from the current TCP/UDP code.
6406                          * We have not tested with it yet.
6407                          */
6408                         if (!(sk->sk_shutdown & SEND_SHUTDOWN))
6409                                 sock_wake_async(sock,
6410                                                 SOCK_WAKE_SPACE, POLL_OUT);
6411                 }
6412         }
6413 }
6414
6415 /* Do accounting for the sndbuf space.
6416  * Decrement the used sndbuf space of the corresponding association by the
6417  * data size which was just transmitted(freed).
6418  */
6419 static void sctp_wfree(struct sk_buff *skb)
6420 {
6421         struct sctp_association *asoc;
6422         struct sctp_chunk *chunk;
6423         struct sock *sk;
6424
6425         /* Get the saved chunk pointer.  */
6426         chunk = *((struct sctp_chunk **)(skb->cb));
6427         asoc = chunk->asoc;
6428         sk = asoc->base.sk;
6429         asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) +
6430                                 sizeof(struct sk_buff) +
6431                                 sizeof(struct sctp_chunk);
6432
6433         atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc);
6434
6435         /*
6436          * This undoes what is done via sctp_set_owner_w and sk_mem_charge
6437          */
6438         sk->sk_wmem_queued   -= skb->truesize;
6439         sk_mem_uncharge(sk, skb->truesize);
6440
6441         sock_wfree(skb);
6442         __sctp_write_space(asoc);
6443
6444         sctp_association_put(asoc);
6445 }
6446
6447 /* Do accounting for the receive space on the socket.
6448  * Accounting for the association is done in ulpevent.c
6449  * We set this as a destructor for the cloned data skbs so that
6450  * accounting is done at the correct time.
6451  */
6452 void sctp_sock_rfree(struct sk_buff *skb)
6453 {
6454         struct sock *sk = skb->sk;
6455         struct sctp_ulpevent *event = sctp_skb2event(skb);
6456
6457         atomic_sub(event->rmem_len, &sk->sk_rmem_alloc);
6458
6459         /*
6460          * Mimic the behavior of sock_rfree
6461          */
6462         sk_mem_uncharge(sk, event->rmem_len);
6463 }
6464
6465
6466 /* Helper function to wait for space in the sndbuf.  */
6467 static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
6468                                 size_t msg_len)
6469 {
6470         struct sock *sk = asoc->base.sk;
6471         long current_timeo = *timeo_p;
6472         DEFINE_WAIT(wait);
6473         int err = 0;
6474
6475         SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n",
6476                           asoc, (long)(*timeo_p), msg_len);
6477
6478         /* Increment the association's refcnt.  */
6479         sctp_association_hold(asoc);
6480
6481         /* Wait on the association specific sndbuf space. */
6482         for (;;) {
6483                 prepare_to_wait_exclusive(&asoc->wait, &wait,
6484                                           TASK_INTERRUPTIBLE);
6485                 if (!*timeo_p)
6486                         goto do_nonblock;
6487                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6488                     asoc->base.dead)
6489                         goto do_error;
6490                 if (signal_pending(current))
6491                         goto do_interrupted;
6492                 if (msg_len <= sctp_wspace(asoc))
6493                         break;
6494
6495                 /* Let another process have a go.  Since we are going
6496                  * to sleep anyway.
6497                  */
6498                 sctp_release_sock(sk);
6499                 current_timeo = schedule_timeout(current_timeo);
6500                 sctp_lock_sock(sk);
6501                 if (sk != asoc->base.sk)
6502                         goto do_error;
6503
6504                 *timeo_p = current_timeo;
6505         }
6506
6507 out:
6508         finish_wait(&asoc->wait, &wait);
6509
6510         /* Release the association's refcnt.  */
6511         sctp_association_put(asoc);
6512
6513         return err;
6514
6515 do_error:
6516         err = -EPIPE;
6517         goto out;
6518
6519 do_interrupted:
6520         err = sock_intr_errno(*timeo_p);
6521         goto out;
6522
6523 do_nonblock:
6524         err = -EAGAIN;
6525         goto out;
6526 }
6527
6528 void sctp_data_ready(struct sock *sk, int len)
6529 {
6530         struct socket_wq *wq;
6531
6532         rcu_read_lock();
6533         wq = rcu_dereference(sk->sk_wq);
6534         if (wq_has_sleeper(wq))
6535                 wake_up_interruptible_sync_poll(&wq->wait, POLLIN |
6536                                                 POLLRDNORM | POLLRDBAND);
6537         sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
6538         rcu_read_unlock();
6539 }
6540
6541 /* If socket sndbuf has changed, wake up all per association waiters.  */
6542 void sctp_write_space(struct sock *sk)
6543 {
6544         struct sctp_association *asoc;
6545
6546         /* Wake up the tasks in each wait queue.  */
6547         list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) {
6548                 __sctp_write_space(asoc);
6549         }
6550 }
6551
6552 /* Is there any sndbuf space available on the socket?
6553  *
6554  * Note that sk_wmem_alloc is the sum of the send buffers on all of the
6555  * associations on the same socket.  For a UDP-style socket with
6556  * multiple associations, it is possible for it to be "unwriteable"
6557  * prematurely.  I assume that this is acceptable because
6558  * a premature "unwriteable" is better than an accidental "writeable" which
6559  * would cause an unwanted block under certain circumstances.  For the 1-1
6560  * UDP-style sockets or TCP-style sockets, this code should work.
6561  *  - Daisy
6562  */
6563 static int sctp_writeable(struct sock *sk)
6564 {
6565         int amt = 0;
6566
6567         amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
6568         if (amt < 0)
6569                 amt = 0;
6570         return amt;
6571 }
6572
6573 /* Wait for an association to go into ESTABLISHED state. If timeout is 0,
6574  * returns immediately with EINPROGRESS.
6575  */
6576 static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p)
6577 {
6578         struct sock *sk = asoc->base.sk;
6579         int err = 0;
6580         long current_timeo = *timeo_p;
6581         DEFINE_WAIT(wait);
6582
6583         SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __func__, asoc,
6584                           (long)(*timeo_p));
6585
6586         /* Increment the association's refcnt.  */
6587         sctp_association_hold(asoc);
6588
6589         for (;;) {
6590                 prepare_to_wait_exclusive(&asoc->wait, &wait,
6591                                           TASK_INTERRUPTIBLE);
6592                 if (!*timeo_p)
6593                         goto do_nonblock;
6594                 if (sk->sk_shutdown & RCV_SHUTDOWN)
6595                         break;
6596                 if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
6597                     asoc->base.dead)
6598                         goto do_error;
6599                 if (signal_pending(current))
6600                         goto do_interrupted;
6601
6602                 if (sctp_state(asoc, ESTABLISHED))
6603                         break;
6604
6605                 /* Let another process have a go.  Since we are going
6606                  * to sleep anyway.
6607                  */
6608                 sctp_release_sock(sk);
6609                 current_timeo = schedule_timeout(current_timeo);
6610                 sctp_lock_sock(sk);
6611
6612                 *timeo_p = current_timeo;
6613         }
6614
6615 out:
6616         finish_wait(&asoc->wait, &wait);
6617
6618         /* Release the association's refcnt.  */
6619         sctp_association_put(asoc);
6620
6621         return err;
6622
6623 do_error:
6624         if (asoc->init_err_counter + 1 > asoc->max_init_attempts)
6625                 err = -ETIMEDOUT;
6626         else
6627                 err = -ECONNREFUSED;
6628         goto out;
6629
6630 do_interrupted:
6631         err = sock_intr_errno(*timeo_p);
6632         goto out;
6633
6634 do_nonblock:
6635         err = -EINPROGRESS;
6636         goto out;
6637 }
6638
6639 static int sctp_wait_for_accept(struct sock *sk, long timeo)
6640 {
6641         struct sctp_endpoint *ep;
6642         int err = 0;
6643         DEFINE_WAIT(wait);
6644
6645         ep = sctp_sk(sk)->ep;
6646
6647
6648         for (;;) {
6649                 prepare_to_wait_exclusive(sk_sleep(sk), &wait,
6650                                           TASK_INTERRUPTIBLE);
6651
6652                 if (list_empty(&ep->asocs)) {
6653                         sctp_release_sock(sk);
6654                         timeo = schedule_timeout(timeo);
6655                         sctp_lock_sock(sk);
6656                 }
6657
6658                 err = -EINVAL;
6659                 if (!sctp_sstate(sk, LISTENING))
6660                         break;
6661
6662                 err = 0;
6663                 if (!list_empty(&ep->asocs))
6664                         break;
6665
6666                 err = sock_intr_errno(timeo);
6667                 if (signal_pending(current))
6668                         break;
6669
6670                 err = -EAGAIN;
6671                 if (!timeo)
6672                         break;
6673         }
6674
6675         finish_wait(sk_sleep(sk), &wait);
6676
6677         return err;
6678 }
6679
6680 static void sctp_wait_for_close(struct sock *sk, long timeout)
6681 {
6682         DEFINE_WAIT(wait);
6683
6684         do {
6685                 prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE);
6686                 if (list_empty(&sctp_sk(sk)->ep->asocs))
6687                         break;
6688                 sctp_release_sock(sk);
6689                 timeout = schedule_timeout(timeout);
6690                 sctp_lock_sock(sk);
6691         } while (!signal_pending(current) && timeout);
6692
6693         finish_wait(sk_sleep(sk), &wait);
6694 }
6695
6696 static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk)
6697 {
6698         struct sk_buff *frag;
6699
6700         if (!skb->data_len)
6701                 goto done;
6702
6703         /* Don't forget the fragments. */
6704         skb_walk_frags(skb, frag)
6705                 sctp_skb_set_owner_r_frag(frag, sk);
6706
6707 done:
6708         sctp_skb_set_owner_r(skb, sk);
6709 }
6710
6711 void sctp_copy_sock(struct sock *newsk, struct sock *sk,
6712                     struct sctp_association *asoc)
6713 {
6714         struct inet_sock *inet = inet_sk(sk);
6715         struct inet_sock *newinet;
6716
6717         newsk->sk_type = sk->sk_type;
6718         newsk->sk_bound_dev_if = sk->sk_bound_dev_if;
6719         newsk->sk_flags = sk->sk_flags;
6720         newsk->sk_no_check = sk->sk_no_check;
6721         newsk->sk_reuse = sk->sk_reuse;
6722
6723         newsk->sk_shutdown = sk->sk_shutdown;
6724         newsk->sk_destruct = inet_sock_destruct;
6725         newsk->sk_family = sk->sk_family;
6726         newsk->sk_protocol = IPPROTO_SCTP;
6727         newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
6728         newsk->sk_sndbuf = sk->sk_sndbuf;
6729         newsk->sk_rcvbuf = sk->sk_rcvbuf;
6730         newsk->sk_lingertime = sk->sk_lingertime;
6731         newsk->sk_rcvtimeo = sk->sk_rcvtimeo;
6732         newsk->sk_sndtimeo = sk->sk_sndtimeo;
6733
6734         newinet = inet_sk(newsk);
6735
6736         /* Initialize sk's sport, dport, rcv_saddr and daddr for
6737          * getsockname() and getpeername()
6738          */
6739         newinet->inet_sport = inet->inet_sport;
6740         newinet->inet_saddr = inet->inet_saddr;
6741         newinet->inet_rcv_saddr = inet->inet_rcv_saddr;
6742         newinet->inet_dport = htons(asoc->peer.port);
6743         newinet->pmtudisc = inet->pmtudisc;
6744         newinet->inet_id = asoc->next_tsn ^ jiffies;
6745
6746         newinet->uc_ttl = inet->uc_ttl;
6747         newinet->mc_loop = 1;
6748         newinet->mc_ttl = 1;
6749         newinet->mc_index = 0;
6750         newinet->mc_list = NULL;
6751
6752         if (newsk->sk_flags & SK_FLAGS_TIMESTAMP)
6753                 net_enable_timestamp();
6754 }
6755
6756 static inline void sctp_copy_descendant(struct sock *sk_to,
6757                                         const struct sock *sk_from)
6758 {
6759         int ancestor_size = sizeof(struct inet_sock) +
6760                             sizeof(struct sctp_sock) -
6761                             offsetof(struct sctp_sock, auto_asconf_list);
6762
6763         if (sk_from->sk_family == PF_INET6)
6764                 ancestor_size += sizeof(struct ipv6_pinfo);
6765
6766         __inet_sk_copy_descendant(sk_to, sk_from, ancestor_size);
6767 }
6768
6769 /* Populate the fields of the newsk from the oldsk and migrate the assoc
6770  * and its messages to the newsk.
6771  */
6772 static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk,
6773                               struct sctp_association *assoc,
6774                               sctp_socket_type_t type)
6775 {
6776         struct sctp_sock *oldsp = sctp_sk(oldsk);
6777         struct sctp_sock *newsp = sctp_sk(newsk);
6778         struct sctp_bind_bucket *pp; /* hash list port iterator */
6779         struct sctp_endpoint *newep = newsp->ep;
6780         struct sk_buff *skb, *tmp;
6781         struct sctp_ulpevent *event;
6782         struct sctp_bind_hashbucket *head;
6783
6784         /* Migrate socket buffer sizes and all the socket level options to the
6785          * new socket.
6786          */
6787         newsk->sk_sndbuf = oldsk->sk_sndbuf;
6788         newsk->sk_rcvbuf = oldsk->sk_rcvbuf;
6789         /* Brute force copy old sctp opt. */
6790         sctp_copy_descendant(newsk, oldsk);
6791
6792         /* Restore the ep value that was overwritten with the above structure
6793          * copy.
6794          */
6795         newsp->ep = newep;
6796         newsp->hmac = NULL;
6797
6798         /* Hook this new socket in to the bind_hash list. */
6799         head = &sctp_port_hashtable[sctp_phashfn(inet_sk(oldsk)->inet_num)];
6800         sctp_local_bh_disable();
6801         sctp_spin_lock(&head->lock);
6802         pp = sctp_sk(oldsk)->bind_hash;
6803         sk_add_bind_node(newsk, &pp->owner);
6804         sctp_sk(newsk)->bind_hash = pp;
6805         inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num;
6806         sctp_spin_unlock(&head->lock);
6807         sctp_local_bh_enable();
6808
6809         /* Copy the bind_addr list from the original endpoint to the new
6810          * endpoint so that we can handle restarts properly
6811          */
6812         sctp_bind_addr_dup(&newsp->ep->base.bind_addr,
6813                                 &oldsp->ep->base.bind_addr, GFP_KERNEL);
6814
6815         /* Move any messages in the old socket's receive queue that are for the
6816          * peeled off association to the new socket's receive queue.
6817          */
6818         sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) {
6819                 event = sctp_skb2event(skb);
6820                 if (event->asoc == assoc) {
6821                         __skb_unlink(skb, &oldsk->sk_receive_queue);
6822                         __skb_queue_tail(&newsk->sk_receive_queue, skb);
6823                         sctp_skb_set_owner_r_frag(skb, newsk);
6824                 }
6825         }
6826
6827         /* Clean up any messages pending delivery due to partial
6828          * delivery.   Three cases:
6829          * 1) No partial deliver;  no work.
6830          * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby.
6831          * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue.
6832          */
6833         skb_queue_head_init(&newsp->pd_lobby);
6834         atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode);
6835
6836         if (atomic_read(&sctp_sk(oldsk)->pd_mode)) {
6837                 struct sk_buff_head *queue;
6838
6839                 /* Decide which queue to move pd_lobby skbs to. */
6840                 if (assoc->ulpq.pd_mode) {
6841                         queue = &newsp->pd_lobby;
6842                 } else
6843                         queue = &newsk->sk_receive_queue;
6844
6845                 /* Walk through the pd_lobby, looking for skbs that
6846                  * need moved to the new socket.
6847                  */
6848                 sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) {
6849                         event = sctp_skb2event(skb);
6850                         if (event->asoc == assoc) {
6851                                 __skb_unlink(skb, &oldsp->pd_lobby);
6852                                 __skb_queue_tail(queue, skb);
6853                                 sctp_skb_set_owner_r_frag(skb, newsk);
6854                         }
6855                 }
6856
6857                 /* Clear up any skbs waiting for the partial
6858                  * delivery to finish.
6859                  */
6860                 if (assoc->ulpq.pd_mode)
6861                         sctp_clear_pd(oldsk, NULL);
6862
6863         }
6864
6865         sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp)
6866                 sctp_skb_set_owner_r_frag(skb, newsk);
6867
6868         sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp)
6869                 sctp_skb_set_owner_r_frag(skb, newsk);
6870
6871         /* Set the type of socket to indicate that it is peeled off from the
6872          * original UDP-style socket or created with the accept() call on a
6873          * TCP-style socket..
6874          */
6875         newsp->type = type;
6876
6877         /* Mark the new socket "in-use" by the user so that any packets
6878          * that may arrive on the association after we've moved it are
6879          * queued to the backlog.  This prevents a potential race between
6880          * backlog processing on the old socket and new-packet processing
6881          * on the new socket.
6882          *
6883          * The caller has just allocated newsk so we can guarantee that other
6884          * paths won't try to lock it and then oldsk.
6885          */
6886         lock_sock_nested(newsk, SINGLE_DEPTH_NESTING);
6887         sctp_assoc_migrate(assoc, newsk);
6888
6889         /* If the association on the newsk is already closed before accept()
6890          * is called, set RCV_SHUTDOWN flag.
6891          */
6892         if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP))
6893                 newsk->sk_shutdown |= RCV_SHUTDOWN;
6894
6895         newsk->sk_state = SCTP_SS_ESTABLISHED;
6896         sctp_release_sock(newsk);
6897 }
6898
6899
6900 /* This proto struct describes the ULP interface for SCTP.  */
6901 struct proto sctp_prot = {
6902         .name        =  "SCTP",
6903         .owner       =  THIS_MODULE,
6904         .close       =  sctp_close,
6905         .connect     =  sctp_connect,
6906         .disconnect  =  sctp_disconnect,
6907         .accept      =  sctp_accept,
6908         .ioctl       =  sctp_ioctl,
6909         .init        =  sctp_init_sock,
6910         .destroy     =  sctp_destroy_sock,
6911         .shutdown    =  sctp_shutdown,
6912         .setsockopt  =  sctp_setsockopt,
6913         .getsockopt  =  sctp_getsockopt,
6914         .sendmsg     =  sctp_sendmsg,
6915         .recvmsg     =  sctp_recvmsg,
6916         .bind        =  sctp_bind,
6917         .backlog_rcv =  sctp_backlog_rcv,
6918         .hash        =  sctp_hash,
6919         .unhash      =  sctp_unhash,
6920         .get_port    =  sctp_get_port,
6921         .obj_size    =  sizeof(struct sctp_sock),
6922         .sysctl_mem  =  sysctl_sctp_mem,
6923         .sysctl_rmem =  sysctl_sctp_rmem,
6924         .sysctl_wmem =  sysctl_sctp_wmem,
6925         .memory_pressure = &sctp_memory_pressure,
6926         .enter_memory_pressure = sctp_enter_memory_pressure,
6927         .memory_allocated = &sctp_memory_allocated,
6928         .sockets_allocated = &sctp_sockets_allocated,
6929 };
6930
6931 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
6932
6933 #include <net/transp_v6.h>
6934 static void sctp_v6_destroy_sock(struct sock *sk)
6935 {
6936         sctp_destroy_sock(sk);
6937         inet6_destroy_sock(sk);
6938 }
6939
6940 struct proto sctpv6_prot = {
6941         .name           = "SCTPv6",
6942         .owner          = THIS_MODULE,
6943         .close          = sctp_close,
6944         .connect        = sctp_connect,
6945         .disconnect     = sctp_disconnect,
6946         .accept         = sctp_accept,
6947         .ioctl          = sctp_ioctl,
6948         .init           = sctp_init_sock,
6949         .destroy        = sctp_v6_destroy_sock,
6950         .shutdown       = sctp_shutdown,
6951         .setsockopt     = sctp_setsockopt,
6952         .getsockopt     = sctp_getsockopt,
6953         .sendmsg        = sctp_sendmsg,
6954         .recvmsg        = sctp_recvmsg,
6955         .bind           = sctp_bind,
6956         .backlog_rcv    = sctp_backlog_rcv,
6957         .hash           = sctp_hash,
6958         .unhash         = sctp_unhash,
6959         .get_port       = sctp_get_port,
6960         .obj_size       = sizeof(struct sctp6_sock),
6961         .sysctl_mem     = sysctl_sctp_mem,
6962         .sysctl_rmem    = sysctl_sctp_rmem,
6963         .sysctl_wmem    = sysctl_sctp_wmem,
6964         .memory_pressure = &sctp_memory_pressure,
6965         .enter_memory_pressure = sctp_enter_memory_pressure,
6966         .memory_allocated = &sctp_memory_allocated,
6967         .sockets_allocated = &sctp_sockets_allocated,
6968 };
6969 #endif /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */