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