Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 1 | /* SCTP kernel implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 9 | * This file is part of the SCTP kernel implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 18 | * This SCTP implementation is free software; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Vlad Yasevich | 60c778b | 2008-01-11 09:57:09 -0500 | [diff] [blame] | 24 | * This SCTP implementation is distributed in the hope that it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 60 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 67 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <linux/fcntl.h> |
| 69 | #include <linux/poll.h> |
| 70 | #include <linux/init.h> |
| 71 | #include <linux/crypto.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 72 | #include <linux/slab.h> |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 73 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 */ |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 82 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | #include <net/sock.h> |
| 84 | #include <net/sctp/sctp.h> |
| 85 | #include <net/sctp/sm.h> |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* Forward declarations for internal helper functions. */ |
| 88 | static int sctp_writeable(struct sock *sk); |
| 89 | static void sctp_wfree(struct sk_buff *skb); |
| 90 | static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p, |
| 91 | size_t msg_len); |
| 92 | static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p); |
| 93 | static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p); |
| 94 | static int sctp_wait_for_accept(struct sock *sk, long timeo); |
| 95 | static void sctp_wait_for_close(struct sock *sk, long timeo); |
Daniel Borkmann | 0a2fbac | 2013-06-25 18:17:29 +0200 | [diff] [blame] | 96 | static void sctp_destruct_sock(struct sock *sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt, |
| 98 | union sctp_addr *addr, int len); |
| 99 | static int sctp_bindx_add(struct sock *, struct sockaddr *, int); |
| 100 | static int sctp_bindx_rem(struct sock *, struct sockaddr *, int); |
| 101 | static int sctp_send_asconf_add_ip(struct sock *, struct sockaddr *, int); |
| 102 | static int sctp_send_asconf_del_ip(struct sock *, struct sockaddr *, int); |
| 103 | static int sctp_send_asconf(struct sctp_association *asoc, |
| 104 | struct sctp_chunk *chunk); |
| 105 | static int sctp_do_bind(struct sock *, union sctp_addr *, int); |
| 106 | static int sctp_autobind(struct sock *sk); |
| 107 | static void sctp_sock_migrate(struct sock *, struct sock *, |
| 108 | struct sctp_association *, sctp_socket_type_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 110 | extern struct kmem_cache *sctp_bucket_cachep; |
Eric Dumazet | 8d987e5 | 2010-11-09 23:24:26 +0000 | [diff] [blame] | 111 | extern long sysctl_sctp_mem[3]; |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 112 | extern int sysctl_sctp_rmem[3]; |
| 113 | extern int sysctl_sctp_wmem[3]; |
| 114 | |
Adrian Bunk | b6fa1a4 | 2007-09-12 15:18:00 +0200 | [diff] [blame] | 115 | static int sctp_memory_pressure; |
Eric Dumazet | 8d987e5 | 2010-11-09 23:24:26 +0000 | [diff] [blame] | 116 | static atomic_long_t sctp_memory_allocated; |
Eric Dumazet | 1748376 | 2008-11-25 21:16:35 -0800 | [diff] [blame] | 117 | struct percpu_counter sctp_sockets_allocated; |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 118 | |
Pavel Emelyanov | 5c52ba1 | 2008-07-16 20:28:10 -0700 | [diff] [blame] | 119 | static void sctp_enter_memory_pressure(struct sock *sk) |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 120 | { |
| 121 | sctp_memory_pressure = 1; |
| 122 | } |
| 123 | |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | /* Get the sndbuf space available at the time on the association. */ |
| 126 | static inline int sctp_wspace(struct sctp_association *asoc) |
| 127 | { |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 128 | int amt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 130 | if (asoc->ep->sndbuf_policy) |
| 131 | amt = asoc->sndbuf_used; |
| 132 | else |
Eric Dumazet | 31e6d36 | 2009-06-17 19:05:41 -0700 | [diff] [blame] | 133 | amt = sk_wmem_alloc_get(asoc->base.sk); |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 134 | |
| 135 | if (amt >= asoc->base.sk->sk_sndbuf) { |
| 136 | if (asoc->base.sk->sk_userlocks & SOCK_SNDBUF_LOCK) |
| 137 | amt = 0; |
| 138 | else { |
| 139 | amt = sk_stream_wspace(asoc->base.sk); |
| 140 | if (amt < 0) |
| 141 | amt = 0; |
| 142 | } |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 143 | } else { |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 144 | amt = asoc->base.sk->sk_sndbuf - amt; |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return amt; |
| 147 | } |
| 148 | |
| 149 | /* Increment the used sndbuf space count of the corresponding association by |
| 150 | * the size of the outgoing data chunk. |
| 151 | * Also, set the skb destructor for sndbuf accounting later. |
| 152 | * |
| 153 | * Since it is always 1-1 between chunk and skb, and also a new skb is always |
| 154 | * allocated for chunk bundling in sctp_packet_transmit(), we can use the |
| 155 | * destructor in the data chunk skb for the purpose of the sndbuf space |
| 156 | * tracking. |
| 157 | */ |
| 158 | static inline void sctp_set_owner_w(struct sctp_chunk *chunk) |
| 159 | { |
| 160 | struct sctp_association *asoc = chunk->asoc; |
| 161 | struct sock *sk = asoc->base.sk; |
| 162 | |
| 163 | /* The sndbuf space is tracked per association. */ |
| 164 | sctp_association_hold(asoc); |
| 165 | |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 166 | skb_set_owner_w(chunk->skb, sk); |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | chunk->skb->destructor = sctp_wfree; |
| 169 | /* Save the chunk pointer in skb for sctp_wfree to use later. */ |
| 170 | *((struct sctp_chunk **)(chunk->skb->cb)) = chunk; |
| 171 | |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 172 | asoc->sndbuf_used += SCTP_DATA_SNDSIZE(chunk) + |
| 173 | sizeof(struct sk_buff) + |
| 174 | sizeof(struct sctp_chunk); |
| 175 | |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 176 | atomic_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc); |
Hideo Aoki | 3ab224b | 2007-12-31 00:11:19 -0800 | [diff] [blame] | 177 | sk->sk_wmem_queued += chunk->skb->truesize; |
| 178 | sk_mem_charge(sk, chunk->skb->truesize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | /* Verify that this is a valid address. */ |
| 182 | static inline int sctp_verify_addr(struct sock *sk, union sctp_addr *addr, |
| 183 | int len) |
| 184 | { |
| 185 | struct sctp_af *af; |
| 186 | |
| 187 | /* Verify basic sockaddr. */ |
| 188 | af = sctp_sockaddr_af(sctp_sk(sk), addr, len); |
| 189 | if (!af) |
| 190 | return -EINVAL; |
| 191 | |
| 192 | /* Is this a valid SCTP address? */ |
Vlad Yasevich | 5636bef | 2006-06-17 22:55:35 -0700 | [diff] [blame] | 193 | if (!af->addr_valid(addr, sctp_sk(sk), NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | return -EINVAL; |
| 195 | |
| 196 | if (!sctp_sk(sk)->pf->send_verify(sctp_sk(sk), (addr))) |
| 197 | return -EINVAL; |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | /* Look up the association by its id. If this is not a UDP-style |
| 203 | * socket, the ID field is always ignored. |
| 204 | */ |
| 205 | struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id) |
| 206 | { |
| 207 | struct sctp_association *asoc = NULL; |
| 208 | |
| 209 | /* If this is not a UDP-style socket, assoc id should be ignored. */ |
| 210 | if (!sctp_style(sk, UDP)) { |
| 211 | /* Return NULL if the socket state is not ESTABLISHED. It |
| 212 | * could be a TCP-style listening socket or a socket which |
| 213 | * hasn't yet called connect() to establish an association. |
| 214 | */ |
| 215 | if (!sctp_sstate(sk, ESTABLISHED)) |
| 216 | return NULL; |
| 217 | |
| 218 | /* Get the first and the only association from the list. */ |
| 219 | if (!list_empty(&sctp_sk(sk)->ep->asocs)) |
| 220 | asoc = list_entry(sctp_sk(sk)->ep->asocs.next, |
| 221 | struct sctp_association, asocs); |
| 222 | return asoc; |
| 223 | } |
| 224 | |
| 225 | /* Otherwise this is a UDP-style socket. */ |
| 226 | if (!id || (id == (sctp_assoc_t)-1)) |
| 227 | return NULL; |
| 228 | |
| 229 | spin_lock_bh(&sctp_assocs_id_lock); |
| 230 | asoc = (struct sctp_association *)idr_find(&sctp_assocs_id, (int)id); |
| 231 | spin_unlock_bh(&sctp_assocs_id_lock); |
| 232 | |
| 233 | if (!asoc || (asoc->base.sk != sk) || asoc->base.dead) |
| 234 | return NULL; |
| 235 | |
| 236 | return asoc; |
| 237 | } |
| 238 | |
| 239 | /* Look up the transport from an address and an assoc id. If both address and |
| 240 | * id are specified, the associations matching the address and the id should be |
| 241 | * the same. |
| 242 | */ |
| 243 | static struct sctp_transport *sctp_addr_id2transport(struct sock *sk, |
| 244 | struct sockaddr_storage *addr, |
| 245 | sctp_assoc_t id) |
| 246 | { |
| 247 | struct sctp_association *addr_asoc = NULL, *id_asoc = NULL; |
| 248 | struct sctp_transport *transport; |
| 249 | union sctp_addr *laddr = (union sctp_addr *)addr; |
| 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | addr_asoc = sctp_endpoint_lookup_assoc(sctp_sk(sk)->ep, |
Al Viro | cd4ff03 | 2006-11-20 17:11:33 -0800 | [diff] [blame] | 252 | laddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | &transport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | if (!addr_asoc) |
| 256 | return NULL; |
| 257 | |
| 258 | id_asoc = sctp_id2assoc(sk, id); |
| 259 | if (id_asoc && (id_asoc != addr_asoc)) |
| 260 | return NULL; |
| 261 | |
| 262 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk), |
| 263 | (union sctp_addr *)addr); |
| 264 | |
| 265 | return transport; |
| 266 | } |
| 267 | |
| 268 | /* API 3.1.2 bind() - UDP Style Syntax |
| 269 | * The syntax of bind() is, |
| 270 | * |
| 271 | * ret = bind(int sd, struct sockaddr *addr, int addrlen); |
| 272 | * |
| 273 | * sd - the socket descriptor returned by socket(). |
| 274 | * addr - the address structure (struct sockaddr_in or struct |
| 275 | * sockaddr_in6 [RFC 2553]), |
| 276 | * addr_len - the size of the address structure. |
| 277 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 278 | static int sctp_bind(struct sock *sk, struct sockaddr *addr, int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | { |
| 280 | int retval = 0; |
| 281 | |
| 282 | sctp_lock_sock(sk); |
| 283 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 284 | SCTP_DEBUG_PRINTK("sctp_bind(sk: %p, addr: %p, addr_len: %d)\n", |
| 285 | sk, addr, addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | /* Disallow binding twice. */ |
| 288 | if (!sctp_sk(sk)->ep->base.bind_addr.port) |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 289 | retval = sctp_do_bind(sk, (union sctp_addr *)addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | addr_len); |
| 291 | else |
| 292 | retval = -EINVAL; |
| 293 | |
| 294 | sctp_release_sock(sk); |
| 295 | |
| 296 | return retval; |
| 297 | } |
| 298 | |
| 299 | static long sctp_get_port_local(struct sock *, union sctp_addr *); |
| 300 | |
| 301 | /* Verify this is a valid sockaddr. */ |
| 302 | static struct sctp_af *sctp_sockaddr_af(struct sctp_sock *opt, |
| 303 | union sctp_addr *addr, int len) |
| 304 | { |
| 305 | struct sctp_af *af; |
| 306 | |
| 307 | /* Check minimum size. */ |
| 308 | if (len < sizeof (struct sockaddr)) |
| 309 | return NULL; |
| 310 | |
Vlad Yasevich | 7dab83d | 2008-07-18 23:05:40 -0700 | [diff] [blame] | 311 | /* V4 mapped address are really of AF_INET family */ |
| 312 | if (addr->sa.sa_family == AF_INET6 && |
| 313 | ipv6_addr_v4mapped(&addr->v6.sin6_addr)) { |
| 314 | if (!opt->pf->af_supported(AF_INET, opt)) |
| 315 | return NULL; |
| 316 | } else { |
| 317 | /* Does this PF support this AF? */ |
| 318 | if (!opt->pf->af_supported(addr->sa.sa_family, opt)) |
| 319 | return NULL; |
| 320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
| 322 | /* If we get this far, af is valid. */ |
| 323 | af = sctp_get_af_specific(addr->sa.sa_family); |
| 324 | |
| 325 | if (len < af->sockaddr_len) |
| 326 | return NULL; |
| 327 | |
| 328 | return af; |
| 329 | } |
| 330 | |
| 331 | /* Bind a local address either to an endpoint or to an association. */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 332 | static int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
Eric W. Biederman | 3594698 | 2012-11-16 03:03:12 +0000 | [diff] [blame] | 334 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | struct sctp_sock *sp = sctp_sk(sk); |
| 336 | struct sctp_endpoint *ep = sp->ep; |
| 337 | struct sctp_bind_addr *bp = &ep->base.bind_addr; |
| 338 | struct sctp_af *af; |
| 339 | unsigned short snum; |
| 340 | int ret = 0; |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | /* Common sockaddr verification. */ |
| 343 | af = sctp_sockaddr_af(sp, addr, len); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 344 | if (!af) { |
| 345 | SCTP_DEBUG_PRINTK("sctp_do_bind(sk: %p, newaddr: %p, len: %d) EINVAL\n", |
| 346 | sk, addr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | return -EINVAL; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | snum = ntohs(addr->v4.sin_port); |
| 351 | |
| 352 | SCTP_DEBUG_PRINTK_IPADDR("sctp_do_bind(sk: %p, new addr: ", |
| 353 | ", port: %d, new port: %d, len: %d)\n", |
| 354 | sk, |
| 355 | addr, |
| 356 | bp->port, snum, |
| 357 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | /* PF specific bind() address verification. */ |
| 360 | if (!sp->pf->bind_verify(sp, addr)) |
| 361 | return -EADDRNOTAVAIL; |
| 362 | |
Vlad Yasevich | 8b35805 | 2007-05-15 17:14:58 -0400 | [diff] [blame] | 363 | /* We must either be unbound, or bind to the same port. |
| 364 | * It's OK to allow 0 ports if we are already bound. |
| 365 | * We'll just inhert an already bound port in this case |
| 366 | */ |
| 367 | if (bp->port) { |
| 368 | if (!snum) |
| 369 | snum = bp->port; |
| 370 | else if (snum != bp->port) { |
| 371 | SCTP_DEBUG_PRINTK("sctp_do_bind:" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | " New port %d does not match existing port " |
| 373 | "%d.\n", snum, bp->port); |
Vlad Yasevich | 8b35805 | 2007-05-15 17:14:58 -0400 | [diff] [blame] | 374 | return -EINVAL; |
| 375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Eric W. Biederman | 3594698 | 2012-11-16 03:03:12 +0000 | [diff] [blame] | 378 | if (snum && snum < PROT_SOCK && |
| 379 | !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | return -EACCES; |
| 381 | |
Vlad Yasevich | 4e54064 | 2008-07-18 23:06:32 -0700 | [diff] [blame] | 382 | /* See if the address matches any of the addresses we may have |
| 383 | * already bound before checking against other endpoints. |
| 384 | */ |
| 385 | if (sctp_bind_addr_match(bp, addr, sp)) |
| 386 | return -EINVAL; |
| 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /* Make sure we are allowed to bind here. |
| 389 | * The function sctp_get_port_local() does duplicate address |
| 390 | * detection. |
| 391 | */ |
Vlad Yasevich | 2772b49 | 2007-08-21 14:24:30 +0900 | [diff] [blame] | 392 | addr->v4.sin_port = htons(snum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | if ((ret = sctp_get_port_local(sk, addr))) { |
Vlad Yasevich | 4e54064 | 2008-07-18 23:06:32 -0700 | [diff] [blame] | 394 | return -EADDRINUSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | /* Refresh ephemeral port. */ |
| 398 | if (!bp->port) |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 399 | bp->port = inet_sk(sk)->inet_num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 401 | /* Add the address to the bind address list. |
| 402 | * Use GFP_ATOMIC since BHs will be disabled. |
| 403 | */ |
Vlad Yasevich | f57d96b | 2007-12-20 14:12:24 -0800 | [diff] [blame] | 404 | ret = sctp_add_bind_addr(bp, addr, SCTP_ADDR_SRC, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | /* Copy back into socket for getsockname() use. */ |
| 407 | if (!ret) { |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 408 | inet_sk(sk)->inet_sport = htons(inet_sk(sk)->inet_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | af->to_sk_saddr(addr, sk); |
| 410 | } |
| 411 | |
| 412 | return ret; |
| 413 | } |
| 414 | |
| 415 | /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks |
| 416 | * |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 417 | * R1) One and only one ASCONF Chunk MAY be in transit and unacknowledged |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | * at any one time. If a sender, after sending an ASCONF chunk, decides |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 419 | * it needs to transfer another ASCONF Chunk, it MUST wait until the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | * ASCONF-ACK Chunk returns from the previous ASCONF Chunk before sending a |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 421 | * subsequent ASCONF. Note this restriction binds each side, so at any |
| 422 | * time two ASCONF may be in-transit on any given association (one sent |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | * from each endpoint). |
| 424 | */ |
| 425 | static int sctp_send_asconf(struct sctp_association *asoc, |
| 426 | struct sctp_chunk *chunk) |
| 427 | { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 428 | struct net *net = sock_net(asoc->base.sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | int retval = 0; |
| 430 | |
| 431 | /* If there is an outstanding ASCONF chunk, queue it for later |
| 432 | * transmission. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 433 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | if (asoc->addip_last_asconf) { |
David S. Miller | 79af02c | 2005-07-08 21:47:49 -0700 | [diff] [blame] | 435 | list_add_tail(&chunk->list, &asoc->addip_chunk_list); |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 436 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | /* Hold the chunk until an ASCONF_ACK is received. */ |
| 440 | sctp_chunk_hold(chunk); |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 441 | retval = sctp_primitive_ASCONF(net, asoc, chunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | if (retval) |
| 443 | sctp_chunk_free(chunk); |
| 444 | else |
| 445 | asoc->addip_last_asconf = chunk; |
| 446 | |
| 447 | out: |
| 448 | return retval; |
| 449 | } |
| 450 | |
| 451 | /* Add a list of addresses as bind addresses to local endpoint or |
| 452 | * association. |
| 453 | * |
| 454 | * Basically run through each address specified in the addrs/addrcnt |
| 455 | * array/length pair, determine if it is IPv6 or IPv4 and call |
| 456 | * sctp_do_bind() on it. |
| 457 | * |
| 458 | * If any of them fails, then the operation will be reversed and the |
| 459 | * ones that were added will be removed. |
| 460 | * |
| 461 | * Only sctp_setsockopt_bindx() is supposed to call this function. |
| 462 | */ |
sebastian@breakpoint.cc | 0467521 | 2007-07-26 23:21:31 +0200 | [diff] [blame] | 463 | static int sctp_bindx_add(struct sock *sk, struct sockaddr *addrs, int addrcnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | { |
| 465 | int cnt; |
| 466 | int retval = 0; |
| 467 | void *addr_buf; |
| 468 | struct sockaddr *sa_addr; |
| 469 | struct sctp_af *af; |
| 470 | |
| 471 | SCTP_DEBUG_PRINTK("sctp_bindx_add (sk: %p, addrs: %p, addrcnt: %d)\n", |
| 472 | sk, addrs, addrcnt); |
| 473 | |
| 474 | addr_buf = addrs; |
| 475 | for (cnt = 0; cnt < addrcnt; cnt++) { |
| 476 | /* The list may contain either IPv4 or IPv6 address; |
| 477 | * determine the address length for walking thru the list. |
| 478 | */ |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 479 | sa_addr = addr_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | af = sctp_get_af_specific(sa_addr->sa_family); |
| 481 | if (!af) { |
| 482 | retval = -EINVAL; |
| 483 | goto err_bindx_add; |
| 484 | } |
| 485 | |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 486 | retval = sctp_do_bind(sk, (union sctp_addr *)sa_addr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | af->sockaddr_len); |
| 488 | |
| 489 | addr_buf += af->sockaddr_len; |
| 490 | |
| 491 | err_bindx_add: |
| 492 | if (retval < 0) { |
| 493 | /* Failed. Cleanup the ones that have been added */ |
| 494 | if (cnt > 0) |
| 495 | sctp_bindx_rem(sk, addrs, cnt); |
| 496 | return retval; |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | return retval; |
| 501 | } |
| 502 | |
| 503 | /* Send an ASCONF chunk with Add IP address parameters to all the peers of the |
| 504 | * associations that are part of the endpoint indicating that a list of local |
| 505 | * addresses are added to the endpoint. |
| 506 | * |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 507 | * If any of the addresses is already in the bind address list of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | * association, we do not send the chunk for that association. But it will not |
| 509 | * affect other associations. |
| 510 | * |
| 511 | * Only sctp_setsockopt_bindx() is supposed to call this function. |
| 512 | */ |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 513 | static int sctp_send_asconf_add_ip(struct sock *sk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | struct sockaddr *addrs, |
| 515 | int addrcnt) |
| 516 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 517 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | struct sctp_sock *sp; |
| 519 | struct sctp_endpoint *ep; |
| 520 | struct sctp_association *asoc; |
| 521 | struct sctp_bind_addr *bp; |
| 522 | struct sctp_chunk *chunk; |
| 523 | struct sctp_sockaddr_entry *laddr; |
| 524 | union sctp_addr *addr; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 525 | union sctp_addr saveaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | void *addr_buf; |
| 527 | struct sctp_af *af; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | struct list_head *p; |
| 529 | int i; |
| 530 | int retval = 0; |
| 531 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 532 | if (!net->sctp.addip_enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | return retval; |
| 534 | |
| 535 | sp = sctp_sk(sk); |
| 536 | ep = sp->ep; |
| 537 | |
| 538 | SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 539 | __func__, sk, addrs, addrcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 541 | list_for_each_entry(asoc, &ep->asocs, asocs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | |
| 543 | if (!asoc->peer.asconf_capable) |
| 544 | continue; |
| 545 | |
| 546 | if (asoc->peer.addip_disabled_mask & SCTP_PARAM_ADD_IP) |
| 547 | continue; |
| 548 | |
| 549 | if (!sctp_state(asoc, ESTABLISHED)) |
| 550 | continue; |
| 551 | |
| 552 | /* Check if any address in the packed array of addresses is |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 553 | * in the bind address list of the association. If so, |
| 554 | * do not send the asconf chunk to its peer, but continue with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | * other associations. |
| 556 | */ |
| 557 | addr_buf = addrs; |
| 558 | for (i = 0; i < addrcnt; i++) { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 559 | addr = addr_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | af = sctp_get_af_specific(addr->v4.sin_family); |
| 561 | if (!af) { |
| 562 | retval = -EINVAL; |
| 563 | goto out; |
| 564 | } |
| 565 | |
| 566 | if (sctp_assoc_lookup_laddr(asoc, addr)) |
| 567 | break; |
| 568 | |
| 569 | addr_buf += af->sockaddr_len; |
| 570 | } |
| 571 | if (i < addrcnt) |
| 572 | continue; |
| 573 | |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 574 | /* Use the first valid address in bind addr list of |
| 575 | * association as Address Parameter of ASCONF CHUNK. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | bp = &asoc->base.bind_addr; |
| 578 | p = bp->address_list.next; |
| 579 | laddr = list_entry(p, struct sctp_sockaddr_entry, list); |
Al Viro | 5ae955c | 2006-11-20 17:22:08 -0800 | [diff] [blame] | 580 | chunk = sctp_make_asconf_update_ip(asoc, &laddr->a, addrs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | addrcnt, SCTP_PARAM_ADD_IP); |
| 582 | if (!chunk) { |
| 583 | retval = -ENOMEM; |
| 584 | goto out; |
| 585 | } |
| 586 | |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 587 | /* Add the new addresses to the bind address list with |
| 588 | * use_as_src set to 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | */ |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 590 | addr_buf = addrs; |
| 591 | for (i = 0; i < addrcnt; i++) { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 592 | addr = addr_buf; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 593 | af = sctp_get_af_specific(addr->v4.sin_family); |
| 594 | memcpy(&saveaddr, addr, af->sockaddr_len); |
Vlad Yasevich | f57d96b | 2007-12-20 14:12:24 -0800 | [diff] [blame] | 595 | retval = sctp_add_bind_addr(bp, &saveaddr, |
| 596 | SCTP_ADDR_NEW, GFP_ATOMIC); |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 597 | addr_buf += af->sockaddr_len; |
| 598 | } |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 599 | if (asoc->src_out_of_asoc_ok) { |
| 600 | struct sctp_transport *trans; |
| 601 | |
| 602 | list_for_each_entry(trans, |
| 603 | &asoc->peer.transport_addr_list, transports) { |
| 604 | /* Clear the source and route cache */ |
| 605 | dst_release(trans->dst); |
| 606 | trans->cwnd = min(4*asoc->pathmtu, max_t(__u32, |
| 607 | 2*asoc->pathmtu, 4380)); |
| 608 | trans->ssthresh = asoc->peer.i.a_rwnd; |
| 609 | trans->rto = asoc->rto_initial; |
Michele Baldessari | 196d675 | 2012-12-01 04:49:42 +0000 | [diff] [blame] | 610 | sctp_max_rto(asoc, trans); |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
sebastian@breakpoint.cc | 0467521 | 2007-07-26 23:21:31 +0200 | [diff] [blame] | 638 | static int sctp_bindx_rem(struct sock *sk, struct sockaddr *addrs, int addrcnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | void *addr_buf; |
Al Viro | c9a0850 | 2006-11-20 17:07:48 -0800 | [diff] [blame] | 646 | union sctp_addr *sa_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 664 | sa_addr = addr_buf; |
Al Viro | c9a0850 | 2006-11-20 17:07:48 -0800 | [diff] [blame] | 665 | af = sctp_get_af_specific(sa_addr->sa.sa_family); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | if (!af) { |
| 667 | retval = -EINVAL; |
| 668 | goto err_bindx_rem; |
| 669 | } |
Paolo Galtieri | 0304ff8a | 2007-04-17 12:52:36 -0700 | [diff] [blame] | 670 | |
| 671 | if (!af->addr_valid(sa_addr, sp, NULL)) { |
| 672 | retval = -EADDRNOTAVAIL; |
| 673 | goto err_bindx_rem; |
| 674 | } |
| 675 | |
Vlad Yasevich | ee9cbac | 2011-04-18 19:14:47 +0000 | [diff] [blame] | 676 | if (sa_addr->v4.sin_port && |
| 677 | sa_addr->v4.sin_port != htons(bp->port)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | retval = -EINVAL; |
| 679 | goto err_bindx_rem; |
| 680 | } |
| 681 | |
Vlad Yasevich | ee9cbac | 2011-04-18 19:14:47 +0000 | [diff] [blame] | 682 | if (!sa_addr->v4.sin_port) |
| 683 | sa_addr->v4.sin_port = htons(bp->port); |
| 684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Vlad Yasevich | 0ed90fb | 2007-10-24 16:10:00 -0400 | [diff] [blame] | 692 | retval = sctp_del_bind_addr(bp, sa_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 711 | * If any of the addresses is already in the bind address list of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 721 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | struct sctp_sock *sp; |
| 723 | struct sctp_endpoint *ep; |
| 724 | struct sctp_association *asoc; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 725 | struct sctp_transport *transport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | struct sctp_bind_addr *bp; |
| 727 | struct sctp_chunk *chunk; |
| 728 | union sctp_addr *laddr; |
| 729 | void *addr_buf; |
| 730 | struct sctp_af *af; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 731 | struct sctp_sockaddr_entry *saddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | int i; |
| 733 | int retval = 0; |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 734 | int stored = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 736 | chunk = NULL; |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 737 | if (!net->sctp.addip_enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | return retval; |
| 739 | |
| 740 | sp = sctp_sk(sk); |
| 741 | ep = sp->ep; |
| 742 | |
| 743 | SCTP_DEBUG_PRINTK("%s: (sk: %p, addrs: %p, addrcnt: %d)\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 744 | __func__, sk, addrs, addrcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 746 | list_for_each_entry(asoc, &ep->asocs, asocs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
| 748 | if (!asoc->peer.asconf_capable) |
| 749 | continue; |
| 750 | |
| 751 | if (asoc->peer.addip_disabled_mask & SCTP_PARAM_DEL_IP) |
| 752 | continue; |
| 753 | |
| 754 | if (!sctp_state(asoc, ESTABLISHED)) |
| 755 | continue; |
| 756 | |
| 757 | /* Check if any address in the packed array of addresses is |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 758 | * not present in the bind address list of the association. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | * If so, do not send the asconf chunk to its peer, but |
| 760 | * continue with other associations. |
| 761 | */ |
| 762 | addr_buf = addrs; |
| 763 | for (i = 0; i < addrcnt; i++) { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 764 | laddr = addr_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | af = sctp_get_af_specific(laddr->v4.sin_family); |
| 766 | if (!af) { |
| 767 | retval = -EINVAL; |
| 768 | goto out; |
| 769 | } |
| 770 | |
| 771 | if (!sctp_assoc_lookup_laddr(asoc, laddr)) |
| 772 | break; |
| 773 | |
| 774 | addr_buf += af->sockaddr_len; |
| 775 | } |
| 776 | if (i < addrcnt) |
| 777 | continue; |
| 778 | |
| 779 | /* Find one address in the association's bind address list |
| 780 | * that is not in the packed array of addresses. This is to |
| 781 | * make sure that we do not delete all the addresses in the |
| 782 | * association. |
| 783 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | bp = &asoc->base.bind_addr; |
| 785 | laddr = sctp_find_unmatch_addr(bp, (union sctp_addr *)addrs, |
| 786 | addrcnt, sp); |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 787 | if ((laddr == NULL) && (addrcnt == 1)) { |
| 788 | if (asoc->asconf_addr_del_pending) |
| 789 | continue; |
| 790 | asoc->asconf_addr_del_pending = |
| 791 | kzalloc(sizeof(union sctp_addr), GFP_ATOMIC); |
Michio Honda | 6d65e5e | 2011-06-10 16:42:14 +0900 | [diff] [blame] | 792 | if (asoc->asconf_addr_del_pending == NULL) { |
| 793 | retval = -ENOMEM; |
| 794 | goto out; |
| 795 | } |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 796 | asoc->asconf_addr_del_pending->sa.sa_family = |
| 797 | addrs->sa_family; |
| 798 | asoc->asconf_addr_del_pending->v4.sin_port = |
| 799 | htons(bp->port); |
| 800 | if (addrs->sa_family == AF_INET) { |
| 801 | struct sockaddr_in *sin; |
| 802 | |
| 803 | sin = (struct sockaddr_in *)addrs; |
| 804 | asoc->asconf_addr_del_pending->v4.sin_addr.s_addr = sin->sin_addr.s_addr; |
| 805 | } else if (addrs->sa_family == AF_INET6) { |
| 806 | struct sockaddr_in6 *sin6; |
| 807 | |
| 808 | sin6 = (struct sockaddr_in6 *)addrs; |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 809 | asoc->asconf_addr_del_pending->v6.sin6_addr = sin6->sin6_addr; |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 810 | } |
| 811 | SCTP_DEBUG_PRINTK_IPADDR("send_asconf_del_ip: keep the last address asoc: %p ", |
| 812 | " at %p\n", asoc, asoc->asconf_addr_del_pending, |
| 813 | asoc->asconf_addr_del_pending); |
| 814 | asoc->src_out_of_asoc_ok = 1; |
| 815 | stored = 1; |
| 816 | goto skip_mkasconf; |
| 817 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 819 | /* We do not need RCU protection throughout this loop |
| 820 | * because this is done under a socket lock from the |
| 821 | * setsockopt call. |
| 822 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | chunk = sctp_make_asconf_update_ip(asoc, laddr, addrs, addrcnt, |
| 824 | SCTP_PARAM_DEL_IP); |
| 825 | if (!chunk) { |
| 826 | retval = -ENOMEM; |
| 827 | goto out; |
| 828 | } |
| 829 | |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 830 | skip_mkasconf: |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 831 | /* Reset use_as_src flag for the addresses in the bind address |
| 832 | * list that are to be deleted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | */ |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 834 | addr_buf = addrs; |
| 835 | for (i = 0; i < addrcnt; i++) { |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 836 | laddr = addr_buf; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 837 | af = sctp_get_af_specific(laddr->v4.sin_family); |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 838 | list_for_each_entry(saddr, &bp->address_list, list) { |
Al Viro | 5f242a1 | 2006-11-20 17:05:23 -0800 | [diff] [blame] | 839 | if (sctp_cmp_addr_exact(&saddr->a, laddr)) |
Vlad Yasevich | f57d96b | 2007-12-20 14:12:24 -0800 | [diff] [blame] | 840 | saddr->state = SCTP_ADDR_DEL; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 841 | } |
| 842 | addr_buf += af->sockaddr_len; |
| 843 | } |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 844 | |
| 845 | /* Update the route and saddr entries for all the transports |
| 846 | * as some of the addresses in the bind address list are |
| 847 | * about to be deleted and cannot be used as source addresses. |
| 848 | */ |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 849 | list_for_each_entry(transport, &asoc->peer.transport_addr_list, |
| 850 | transports) { |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 851 | dst_release(transport->dst); |
| 852 | sctp_transport_route(transport, NULL, |
| 853 | sctp_sk(asoc->base.sk)); |
| 854 | } |
| 855 | |
Michio Honda | 8a07eb0 | 2011-04-26 20:19:36 +0900 | [diff] [blame] | 856 | if (stored) |
| 857 | /* We don't need to transmit ASCONF */ |
| 858 | continue; |
Sridhar Samudrala | dc022a9 | 2006-07-21 14:49:25 -0700 | [diff] [blame] | 859 | retval = sctp_send_asconf(asoc, chunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | } |
| 861 | out: |
| 862 | return retval; |
| 863 | } |
| 864 | |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 865 | /* set addr events to assocs in the endpoint. ep and addr_wq must be locked */ |
| 866 | int sctp_asconf_mgmt(struct sctp_sock *sp, struct sctp_sockaddr_entry *addrw) |
| 867 | { |
| 868 | struct sock *sk = sctp_opt2sk(sp); |
| 869 | union sctp_addr *addr; |
| 870 | struct sctp_af *af; |
| 871 | |
| 872 | /* It is safe to write port space in caller. */ |
| 873 | addr = &addrw->a; |
| 874 | addr->v4.sin_port = htons(sp->ep->base.bind_addr.port); |
| 875 | af = sctp_get_af_specific(addr->sa.sa_family); |
| 876 | if (!af) |
| 877 | return -EINVAL; |
| 878 | if (sctp_verify_addr(sk, addr, af->sockaddr_len)) |
| 879 | return -EINVAL; |
| 880 | |
| 881 | if (addrw->state == SCTP_ADDR_NEW) |
| 882 | return sctp_send_asconf_add_ip(sk, (struct sockaddr *)addr, 1); |
| 883 | else |
| 884 | return sctp_send_asconf_del_ip(sk, (struct sockaddr *)addr, 1); |
| 885 | } |
| 886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | /* Helper for tunneling sctp_bindx() requests through sctp_setsockopt() |
| 888 | * |
| 889 | * API 8.1 |
| 890 | * int sctp_bindx(int sd, struct sockaddr *addrs, int addrcnt, |
| 891 | * int flags); |
| 892 | * |
| 893 | * If sd is an IPv4 socket, the addresses passed must be IPv4 addresses. |
| 894 | * If the sd is an IPv6 socket, the addresses passed can either be IPv4 |
| 895 | * or IPv6 addresses. |
| 896 | * |
| 897 | * A single address may be specified as INADDR_ANY or IN6ADDR_ANY, see |
| 898 | * Section 3.1.2 for this usage. |
| 899 | * |
| 900 | * addrs is a pointer to an array of one or more socket addresses. Each |
| 901 | * address is contained in its appropriate structure (i.e. struct |
| 902 | * sockaddr_in or struct sockaddr_in6) the family of the address type |
Ville Nuorvala | 23c435f | 2006-10-16 22:08:28 -0700 | [diff] [blame] | 903 | * must be used to distinguish the address length (note that this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | * representation is termed a "packed array" of addresses). The caller |
| 905 | * specifies the number of addresses in the array with addrcnt. |
| 906 | * |
| 907 | * On success, sctp_bindx() returns 0. On failure, sctp_bindx() returns |
| 908 | * -1, and sets errno to the appropriate error code. |
| 909 | * |
| 910 | * For SCTP, the port given in each socket address must be the same, or |
| 911 | * sctp_bindx() will fail, setting errno to EINVAL. |
| 912 | * |
| 913 | * The flags parameter is formed from the bitwise OR of zero or more of |
| 914 | * the following currently defined flags: |
| 915 | * |
| 916 | * SCTP_BINDX_ADD_ADDR |
| 917 | * |
| 918 | * SCTP_BINDX_REM_ADDR |
| 919 | * |
| 920 | * SCTP_BINDX_ADD_ADDR directs SCTP to add the given addresses to the |
| 921 | * association, and SCTP_BINDX_REM_ADDR directs SCTP to remove the given |
| 922 | * addresses from the association. The two flags are mutually exclusive; |
| 923 | * if both are given, sctp_bindx() will fail with EINVAL. A caller may |
| 924 | * not remove all addresses from an association; sctp_bindx() will |
| 925 | * reject such an attempt with EINVAL. |
| 926 | * |
| 927 | * An application can use sctp_bindx(SCTP_BINDX_ADD_ADDR) to associate |
| 928 | * additional addresses with an endpoint after calling bind(). Or use |
| 929 | * sctp_bindx(SCTP_BINDX_REM_ADDR) to remove some addresses a listening |
| 930 | * socket is associated with so that no new association accepted will be |
| 931 | * associated with those addresses. If the endpoint supports dynamic |
| 932 | * address a SCTP_BINDX_REM_ADDR or SCTP_BINDX_ADD_ADDR may cause a |
| 933 | * endpoint to send the appropriate message to the peer to change the |
| 934 | * peers address lists. |
| 935 | * |
| 936 | * Adding and removing addresses from a connected association is |
| 937 | * optional functionality. Implementations that do not support this |
| 938 | * functionality should return EOPNOTSUPP. |
| 939 | * |
| 940 | * Basically do nothing but copying the addresses from user to kernel |
| 941 | * land and invoking either sctp_bindx_add() or sctp_bindx_rem() on the sk. |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 942 | * This is used for tunneling the sctp_bindx() request through sctp_setsockopt() |
| 943 | * from userspace. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | * |
| 945 | * We don't use copy_from_user() for optimization: we first do the |
| 946 | * sanity checks (buffer size -fast- and access check-healthy |
| 947 | * pointer); if all of those succeed, then we can alloc the memory |
| 948 | * (expensive operation) needed to copy the data to kernel. Then we do |
| 949 | * the copying without checking the user space area |
| 950 | * (__copy_from_user()). |
| 951 | * |
| 952 | * On exit there is no need to do sockfd_put(), sys_setsockopt() does |
| 953 | * it. |
| 954 | * |
| 955 | * sk The sk of the socket |
| 956 | * addrs The pointer to the addresses in user land |
| 957 | * addrssize Size of the addrs buffer |
| 958 | * op Operation to perform (add or remove, see the flags of |
| 959 | * sctp_bindx) |
| 960 | * |
| 961 | * Returns 0 if ok, <0 errno code on error. |
| 962 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 963 | static int sctp_setsockopt_bindx(struct sock* sk, |
| 964 | struct sockaddr __user *addrs, |
| 965 | int addrs_size, int op) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
| 967 | struct sockaddr *kaddrs; |
| 968 | int err; |
| 969 | int addrcnt = 0; |
| 970 | int walk_size = 0; |
| 971 | struct sockaddr *sa_addr; |
| 972 | void *addr_buf; |
| 973 | struct sctp_af *af; |
| 974 | |
Masanari Iida | d3e9a1d | 2012-10-31 05:48:19 +0000 | [diff] [blame] | 975 | SCTP_DEBUG_PRINTK("sctp_setsockopt_bindx: sk %p addrs %p" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | " addrs_size %d opt %d\n", sk, addrs, addrs_size, op); |
| 977 | |
| 978 | if (unlikely(addrs_size <= 0)) |
| 979 | return -EINVAL; |
| 980 | |
| 981 | /* Check the user passed a healthy pointer. */ |
| 982 | if (unlikely(!access_ok(VERIFY_READ, addrs, addrs_size))) |
| 983 | return -EFAULT; |
| 984 | |
| 985 | /* Alloc space for the address array in kernel memory. */ |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 986 | kaddrs = kmalloc(addrs_size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | if (unlikely(!kaddrs)) |
| 988 | return -ENOMEM; |
| 989 | |
| 990 | if (__copy_from_user(kaddrs, addrs, addrs_size)) { |
| 991 | kfree(kaddrs); |
| 992 | return -EFAULT; |
| 993 | } |
| 994 | |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 995 | /* Walk through the addrs buffer and count the number of addresses. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | addr_buf = kaddrs; |
| 997 | while (walk_size < addrs_size) { |
Dan Rosenberg | d7e0d19 | 2010-10-01 11:16:58 +0000 | [diff] [blame] | 998 | if (walk_size + sizeof(sa_family_t) > addrs_size) { |
| 999 | kfree(kaddrs); |
| 1000 | return -EINVAL; |
| 1001 | } |
| 1002 | |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 1003 | sa_addr = addr_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | af = sctp_get_af_specific(sa_addr->sa_family); |
| 1005 | |
| 1006 | /* If the address family is not supported or if this address |
| 1007 | * causes the address buffer to overflow return EINVAL. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1008 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | if (!af || (walk_size + af->sockaddr_len) > addrs_size) { |
| 1010 | kfree(kaddrs); |
| 1011 | return -EINVAL; |
| 1012 | } |
| 1013 | addrcnt++; |
| 1014 | addr_buf += af->sockaddr_len; |
| 1015 | walk_size += af->sockaddr_len; |
| 1016 | } |
| 1017 | |
| 1018 | /* Do the work. */ |
| 1019 | switch (op) { |
| 1020 | case SCTP_BINDX_ADD_ADDR: |
| 1021 | err = sctp_bindx_add(sk, kaddrs, addrcnt); |
| 1022 | if (err) |
| 1023 | goto out; |
| 1024 | err = sctp_send_asconf_add_ip(sk, kaddrs, addrcnt); |
| 1025 | break; |
| 1026 | |
| 1027 | case SCTP_BINDX_REM_ADDR: |
| 1028 | err = sctp_bindx_rem(sk, kaddrs, addrcnt); |
| 1029 | if (err) |
| 1030 | goto out; |
| 1031 | err = sctp_send_asconf_del_ip(sk, kaddrs, addrcnt); |
| 1032 | break; |
| 1033 | |
| 1034 | default: |
| 1035 | err = -EINVAL; |
| 1036 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 1037 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | |
| 1039 | out: |
| 1040 | kfree(kaddrs); |
| 1041 | |
| 1042 | return err; |
| 1043 | } |
| 1044 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1045 | /* __sctp_connect(struct sock* sk, struct sockaddr *kaddrs, int addrs_size) |
| 1046 | * |
| 1047 | * Common routine for handling connect() and sctp_connectx(). |
| 1048 | * Connect will come in with just a single address. |
| 1049 | */ |
| 1050 | static int __sctp_connect(struct sock* sk, |
| 1051 | struct sockaddr *kaddrs, |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1052 | int addrs_size, |
| 1053 | sctp_assoc_t *assoc_id) |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1054 | { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1055 | struct net *net = sock_net(sk); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1056 | struct sctp_sock *sp; |
| 1057 | struct sctp_endpoint *ep; |
| 1058 | struct sctp_association *asoc = NULL; |
| 1059 | struct sctp_association *asoc2; |
| 1060 | struct sctp_transport *transport; |
| 1061 | union sctp_addr to; |
| 1062 | struct sctp_af *af; |
| 1063 | sctp_scope_t scope; |
| 1064 | long timeo; |
| 1065 | int err = 0; |
| 1066 | int addrcnt = 0; |
| 1067 | int walk_size = 0; |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1068 | union sctp_addr *sa_addr = NULL; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1069 | void *addr_buf; |
Vlad Yasevich | 16d00fb | 2007-05-04 13:34:09 -0700 | [diff] [blame] | 1070 | unsigned short port; |
Vlad Yasevich | f50f95c | 2007-07-03 12:47:40 -0400 | [diff] [blame] | 1071 | unsigned int f_flags = 0; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1072 | |
| 1073 | sp = sctp_sk(sk); |
| 1074 | ep = sp->ep; |
| 1075 | |
| 1076 | /* connect() cannot be done on a socket that is already in ESTABLISHED |
| 1077 | * state - UDP-style peeled off socket or a TCP-style socket that |
| 1078 | * is already connected. |
| 1079 | * It cannot be done even on a TCP-style listening socket. |
| 1080 | */ |
| 1081 | if (sctp_sstate(sk, ESTABLISHED) || |
| 1082 | (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING))) { |
| 1083 | err = -EISCONN; |
| 1084 | goto out_free; |
| 1085 | } |
| 1086 | |
| 1087 | /* Walk through the addrs buffer and count the number of addresses. */ |
| 1088 | addr_buf = kaddrs; |
| 1089 | while (walk_size < addrs_size) { |
Dan Rosenberg | d7e0d19 | 2010-10-01 11:16:58 +0000 | [diff] [blame] | 1090 | if (walk_size + sizeof(sa_family_t) > addrs_size) { |
| 1091 | err = -EINVAL; |
| 1092 | goto out_free; |
| 1093 | } |
| 1094 | |
Joe Perches | ea11073 | 2011-06-13 16:21:26 +0000 | [diff] [blame] | 1095 | sa_addr = addr_buf; |
Al Viro | 4bdf4b5 | 2006-11-20 17:10:20 -0800 | [diff] [blame] | 1096 | af = sctp_get_af_specific(sa_addr->sa.sa_family); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1097 | |
| 1098 | /* If the address family is not supported or if this address |
| 1099 | * causes the address buffer to overflow return EINVAL. |
| 1100 | */ |
| 1101 | if (!af || (walk_size + af->sockaddr_len) > addrs_size) { |
| 1102 | err = -EINVAL; |
| 1103 | goto out_free; |
| 1104 | } |
| 1105 | |
Dan Rosenberg | d7e0d19 | 2010-10-01 11:16:58 +0000 | [diff] [blame] | 1106 | port = ntohs(sa_addr->v4.sin_port); |
| 1107 | |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1108 | /* Save current address so we can work with it */ |
| 1109 | memcpy(&to, sa_addr, af->sockaddr_len); |
| 1110 | |
| 1111 | err = sctp_verify_addr(sk, &to, af->sockaddr_len); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1112 | if (err) |
| 1113 | goto out_free; |
| 1114 | |
Vlad Yasevich | 16d00fb | 2007-05-04 13:34:09 -0700 | [diff] [blame] | 1115 | /* Make sure the destination port is correctly set |
| 1116 | * in all addresses. |
| 1117 | */ |
Wei Yongjun | 524fba6 | 2013-04-03 03:02:28 +0000 | [diff] [blame] | 1118 | if (asoc && asoc->peer.port && asoc->peer.port != port) { |
| 1119 | err = -EINVAL; |
Vlad Yasevich | 16d00fb | 2007-05-04 13:34:09 -0700 | [diff] [blame] | 1120 | goto out_free; |
Wei Yongjun | 524fba6 | 2013-04-03 03:02:28 +0000 | [diff] [blame] | 1121 | } |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1122 | |
| 1123 | /* Check if there already is a matching association on the |
| 1124 | * endpoint (other than the one created here). |
| 1125 | */ |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1126 | asoc2 = sctp_endpoint_lookup_assoc(ep, &to, &transport); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 | */ |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1139 | if (sctp_endpoint_is_peeled_off(ep, &to)) { |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 | } |
Ivan Skytte Jorgensen | 64a0c1c | 2005-10-28 15:39:02 -0700 | [diff] [blame] | 1155 | } else { |
| 1156 | /* |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 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 |
Ivan Skytte Jorgensen | 64a0c1c | 2005-10-28 15:39:02 -0700 | [diff] [blame] | 1161 | * be permitted to open new associations. |
| 1162 | */ |
| 1163 | if (ep->base.bind_addr.port < PROT_SOCK && |
Eric W. Biederman | 3594698 | 2012-11-16 03:03:12 +0000 | [diff] [blame] | 1164 | !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) { |
Ivan Skytte Jorgensen | 64a0c1c | 2005-10-28 15:39:02 -0700 | [diff] [blame] | 1165 | err = -EACCES; |
| 1166 | goto out_free; |
| 1167 | } |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1168 | } |
| 1169 | |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1170 | scope = sctp_scope(&to); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1171 | asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL); |
| 1172 | if (!asoc) { |
| 1173 | err = -ENOMEM; |
| 1174 | goto out_free; |
| 1175 | } |
Vlad Yasevich | 409b95a | 2009-11-10 08:57:34 +0000 | [diff] [blame] | 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 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1183 | } |
| 1184 | |
| 1185 | /* Prime the peer's transport structures. */ |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1186 | transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 | |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 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 | |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1207 | err = sctp_primitive_ASSOCIATE(net, asoc, NULL); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1208 | if (err < 0) { |
| 1209 | goto out_free; |
| 1210 | } |
| 1211 | |
| 1212 | /* Initialize sk's dport and daddr for getpeername() */ |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 1213 | inet_sk(sk)->inet_dport = htons(asoc->peer.port); |
Vlad Yasevich | e4d1fea | 2007-08-01 10:56:43 -0400 | [diff] [blame] | 1214 | af = sctp_get_af_specific(sa_addr->sa.sa_family); |
| 1215 | af->to_sk_daddr(sa_addr, sk); |
Sridhar Samudrala | 8de8c87 | 2006-05-19 10:58:12 -0700 | [diff] [blame] | 1216 | sk->sk_err = 0; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1217 | |
Vlad Yasevich | f50f95c | 2007-07-03 12:47:40 -0400 | [diff] [blame] | 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 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1226 | err = sctp_wait_for_connect(asoc, &timeo); |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1227 | if ((err == 0 || err == -EINPROGRESS) && assoc_id) |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1228 | *assoc_id = asoc->assoc_id; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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" |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1236 | " kaddrs: %p err: %d\n", |
| 1237 | asoc, kaddrs, err); |
Neil Horman | 2eebc1e | 2012-07-16 09:13:51 +0000 | [diff] [blame] | 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); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1244 | sctp_association_free(asoc); |
Neil Horman | 2eebc1e | 2012-07-16 09:13:51 +0000 | [diff] [blame] | 1245 | } |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1246 | return err; |
| 1247 | } |
| 1248 | |
| 1249 | /* Helper for tunneling sctp_connectx() requests through sctp_setsockopt() |
| 1250 | * |
| 1251 | * API 8.9 |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1252 | * int sctp_connectx(int sd, struct sockaddr *addrs, int addrcnt, |
| 1253 | * sctp_assoc_t *asoc); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 | * |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 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. |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1281 | * the association is implementation dependent. This function only |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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 | * |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1309 | * Returns >=0 if ok, <0 errno code on error. |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1310 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1311 | static int __sctp_setsockopt_connectx(struct sock* sk, |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1312 | struct sockaddr __user *addrs, |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1313 | int addrs_size, |
| 1314 | sctp_assoc_t *assoc_id) |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1315 | { |
| 1316 | int err = 0; |
| 1317 | struct sockaddr *kaddrs; |
| 1318 | |
| 1319 | SCTP_DEBUG_PRINTK("%s - sk %p addrs %p addrs_size %d\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 1320 | __func__, sk, addrs, addrs_size); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 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. */ |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 1330 | kaddrs = kmalloc(addrs_size, GFP_KERNEL); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1331 | if (unlikely(!kaddrs)) |
| 1332 | return -ENOMEM; |
| 1333 | |
| 1334 | if (__copy_from_user(kaddrs, addrs, addrs_size)) { |
| 1335 | err = -EFAULT; |
| 1336 | } else { |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1337 | err = __sctp_connect(sk, kaddrs, addrs_size, assoc_id); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | kfree(kaddrs); |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1341 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1342 | return err; |
| 1343 | } |
| 1344 | |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 1345 | /* |
| 1346 | * This is an older interface. It's kept for backward compatibility |
| 1347 | * to the option that doesn't provide association id. |
| 1348 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1349 | static int sctp_setsockopt_connectx_old(struct sock* sk, |
| 1350 | struct sockaddr __user *addrs, |
| 1351 | int addrs_size) |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 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 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1362 | static int sctp_setsockopt_connectx(struct sock* sk, |
| 1363 | struct sockaddr __user *addrs, |
| 1364 | int addrs_size) |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 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 | |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1377 | /* |
Vlad Yasevich | f9c6781 | 2009-11-11 08:19:24 +0000 | [diff] [blame] | 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 defferent 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. |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1384 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1385 | static int sctp_getsockopt_connectx3(struct sock* sk, int len, |
| 1386 | char __user *optval, |
| 1387 | int __user *optlen) |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1388 | { |
Vlad Yasevich | f9c6781 | 2009-11-11 08:19:24 +0000 | [diff] [blame] | 1389 | struct sctp_getaddrs_old param; |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1390 | sctp_assoc_t assoc_id = 0; |
| 1391 | int err = 0; |
| 1392 | |
Vlad Yasevich | f9c6781 | 2009-11-11 08:19:24 +0000 | [diff] [blame] | 1393 | if (len < sizeof(param)) |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1394 | return -EINVAL; |
| 1395 | |
Vlad Yasevich | f9c6781 | 2009-11-11 08:19:24 +0000 | [diff] [blame] | 1396 | if (copy_from_user(¶m, optval, sizeof(param))) |
| 1397 | return -EFAULT; |
| 1398 | |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1399 | err = __sctp_setsockopt_connectx(sk, |
Vlad Yasevich | f9c6781 | 2009-11-11 08:19:24 +0000 | [diff] [blame] | 1400 | (struct sockaddr __user *)param.addrs, |
| 1401 | param.addr_num, &assoc_id); |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 1402 | |
| 1403 | if (err == 0 || err == -EINPROGRESS) { |
| 1404 | if (copy_to_user(optval, &assoc_id, sizeof(assoc_id))) |
| 1405 | return -EFAULT; |
| 1406 | if (put_user(sizeof(assoc_id), optlen)) |
| 1407 | return -EFAULT; |
| 1408 | } |
| 1409 | |
| 1410 | return err; |
| 1411 | } |
| 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | /* API 3.1.4 close() - UDP Style Syntax |
| 1414 | * Applications use close() to perform graceful shutdown (as described in |
| 1415 | * Section 10.1 of [SCTP]) on ALL the associations currently represented |
| 1416 | * by a UDP-style socket. |
| 1417 | * |
| 1418 | * The syntax is |
| 1419 | * |
| 1420 | * ret = close(int sd); |
| 1421 | * |
| 1422 | * sd - the socket descriptor of the associations to be closed. |
| 1423 | * |
| 1424 | * To gracefully shutdown a specific association represented by the |
| 1425 | * UDP-style socket, an application should use the sendmsg() call, |
| 1426 | * passing no user data, but including the appropriate flag in the |
| 1427 | * ancillary data (see Section xxxx). |
| 1428 | * |
| 1429 | * If sd in the close() call is a branched-off socket representing only |
| 1430 | * one association, the shutdown is performed on that association only. |
| 1431 | * |
| 1432 | * 4.1.6 close() - TCP Style Syntax |
| 1433 | * |
| 1434 | * Applications use close() to gracefully close down an association. |
| 1435 | * |
| 1436 | * The syntax is: |
| 1437 | * |
| 1438 | * int close(int sd); |
| 1439 | * |
| 1440 | * sd - the socket descriptor of the association to be closed. |
| 1441 | * |
| 1442 | * After an application calls close() on a socket descriptor, no further |
| 1443 | * socket operations will succeed on that descriptor. |
| 1444 | * |
| 1445 | * API 7.1.4 SO_LINGER |
| 1446 | * |
| 1447 | * An application using the TCP-style socket can use this option to |
| 1448 | * perform the SCTP ABORT primitive. The linger option structure is: |
| 1449 | * |
| 1450 | * struct linger { |
| 1451 | * int l_onoff; // option on/off |
| 1452 | * int l_linger; // linger time |
| 1453 | * }; |
| 1454 | * |
| 1455 | * To enable the option, set l_onoff to 1. If the l_linger value is set |
| 1456 | * to 0, calling close() is the same as the ABORT primitive. If the |
| 1457 | * value is set to a negative value, the setsockopt() call will return |
| 1458 | * an error. If the value is set to a positive value linger_time, the |
| 1459 | * close() can be blocked for at most linger_time ms. If the graceful |
| 1460 | * shutdown phase does not finish during this period, close() will |
| 1461 | * return but the graceful shutdown phase continues in the system. |
| 1462 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1463 | static void sctp_close(struct sock *sk, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1465 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | struct sctp_endpoint *ep; |
| 1467 | struct sctp_association *asoc; |
| 1468 | struct list_head *pos, *temp; |
Thomas Graf | cd4fcc7 | 2011-07-08 04:37:46 +0000 | [diff] [blame] | 1469 | unsigned int data_was_unread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | |
| 1471 | SCTP_DEBUG_PRINTK("sctp_close(sk: 0x%p, timeout:%ld)\n", sk, timeout); |
| 1472 | |
| 1473 | sctp_lock_sock(sk); |
| 1474 | sk->sk_shutdown = SHUTDOWN_MASK; |
Vlad Yasevich | bec9640 | 2009-07-30 18:08:28 -0400 | [diff] [blame] | 1475 | sk->sk_state = SCTP_SS_CLOSING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
| 1477 | ep = sctp_sk(sk)->ep; |
| 1478 | |
Thomas Graf | cd4fcc7 | 2011-07-08 04:37:46 +0000 | [diff] [blame] | 1479 | /* Clean up any skbs sitting on the receive queue. */ |
| 1480 | data_was_unread = sctp_queue_purge_ulpevents(&sk->sk_receive_queue); |
| 1481 | data_was_unread += sctp_queue_purge_ulpevents(&sctp_sk(sk)->pd_lobby); |
| 1482 | |
Vladislav Yasevich | 61c9fed | 2006-05-19 11:01:18 -0700 | [diff] [blame] | 1483 | /* Walk all associations on an endpoint. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | list_for_each_safe(pos, temp, &ep->asocs) { |
| 1485 | asoc = list_entry(pos, struct sctp_association, asocs); |
| 1486 | |
| 1487 | if (sctp_style(sk, TCP)) { |
| 1488 | /* A closed association can still be in the list if |
| 1489 | * it belongs to a TCP-style listening socket that is |
| 1490 | * not yet accepted. If so, free it. If not, send an |
| 1491 | * ABORT or SHUTDOWN based on the linger options. |
| 1492 | */ |
| 1493 | if (sctp_state(asoc, CLOSED)) { |
| 1494 | sctp_unhash_established(asoc); |
| 1495 | sctp_association_free(asoc); |
Vladislav Yasevich | b89498a | 2006-05-19 14:32:06 -0700 | [diff] [blame] | 1496 | continue; |
| 1497 | } |
| 1498 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | |
Thomas Graf | cd4fcc7 | 2011-07-08 04:37:46 +0000 | [diff] [blame] | 1500 | if (data_was_unread || !skb_queue_empty(&asoc->ulpq.lobby) || |
| 1501 | !skb_queue_empty(&asoc->ulpq.reasm) || |
| 1502 | (sock_flag(sk, SOCK_LINGER) && !sk->sk_lingertime)) { |
Sridhar Samudrala | b9ac867 | 2006-08-28 13:53:01 -0700 | [diff] [blame] | 1503 | struct sctp_chunk *chunk; |
| 1504 | |
| 1505 | chunk = sctp_make_abort_user(asoc, NULL, 0); |
| 1506 | if (chunk) |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1507 | sctp_primitive_ABORT(net, asoc, chunk); |
Sridhar Samudrala | b9ac867 | 2006-08-28 13:53:01 -0700 | [diff] [blame] | 1508 | } else |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1509 | sctp_primitive_SHUTDOWN(net, asoc, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | } |
| 1511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | /* On a TCP-style socket, block for at most linger_time if set. */ |
| 1513 | if (sctp_style(sk, TCP) && timeout) |
| 1514 | sctp_wait_for_close(sk, timeout); |
| 1515 | |
| 1516 | /* This will run the backlog queue. */ |
| 1517 | sctp_release_sock(sk); |
| 1518 | |
| 1519 | /* Supposedly, no process has access to the socket, but |
| 1520 | * the net layers still may. |
| 1521 | */ |
| 1522 | sctp_local_bh_disable(); |
| 1523 | sctp_bh_lock_sock(sk); |
| 1524 | |
| 1525 | /* Hold the sock, since sk_common_release() will put sock_put() |
| 1526 | * and we have just a little more cleanup. |
| 1527 | */ |
| 1528 | sock_hold(sk); |
| 1529 | sk_common_release(sk); |
| 1530 | |
| 1531 | sctp_bh_unlock_sock(sk); |
| 1532 | sctp_local_bh_enable(); |
| 1533 | |
| 1534 | sock_put(sk); |
| 1535 | |
| 1536 | SCTP_DBG_OBJCNT_DEC(sock); |
| 1537 | } |
| 1538 | |
| 1539 | /* Handle EPIPE error. */ |
| 1540 | static int sctp_error(struct sock *sk, int flags, int err) |
| 1541 | { |
| 1542 | if (err == -EPIPE) |
| 1543 | err = sock_error(sk) ? : -EPIPE; |
| 1544 | if (err == -EPIPE && !(flags & MSG_NOSIGNAL)) |
| 1545 | send_sig(SIGPIPE, current, 0); |
| 1546 | return err; |
| 1547 | } |
| 1548 | |
| 1549 | /* API 3.1.3 sendmsg() - UDP Style Syntax |
| 1550 | * |
| 1551 | * An application uses sendmsg() and recvmsg() calls to transmit data to |
| 1552 | * and receive data from its peer. |
| 1553 | * |
| 1554 | * ssize_t sendmsg(int socket, const struct msghdr *message, |
| 1555 | * int flags); |
| 1556 | * |
| 1557 | * socket - the socket descriptor of the endpoint. |
| 1558 | * message - pointer to the msghdr structure which contains a single |
| 1559 | * user message and possibly some ancillary data. |
| 1560 | * |
| 1561 | * See Section 5 for complete description of the data |
| 1562 | * structures. |
| 1563 | * |
| 1564 | * flags - flags sent or received with the user message, see Section |
| 1565 | * 5 for complete description of the flags. |
| 1566 | * |
| 1567 | * Note: This function could use a rewrite especially when explicit |
| 1568 | * connect support comes in. |
| 1569 | */ |
| 1570 | /* BUG: We do not implement the equivalent of sk_stream_wait_memory(). */ |
| 1571 | |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1572 | static int sctp_msghdr_parse(const struct msghdr *, sctp_cmsgs_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 1574 | static int sctp_sendmsg(struct kiocb *iocb, struct sock *sk, |
| 1575 | struct msghdr *msg, size_t msg_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1577 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1578 | struct sctp_sock *sp; |
| 1579 | struct sctp_endpoint *ep; |
| 1580 | struct sctp_association *new_asoc=NULL, *asoc=NULL; |
| 1581 | struct sctp_transport *transport, *chunk_tp; |
| 1582 | struct sctp_chunk *chunk; |
Al Viro | dce116a | 2006-11-20 17:25:15 -0800 | [diff] [blame] | 1583 | union sctp_addr to; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | struct sockaddr *msg_name = NULL; |
Joe Perches | 517aa0b | 2011-05-12 11:27:20 +0000 | [diff] [blame] | 1585 | struct sctp_sndrcvinfo default_sinfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | struct sctp_sndrcvinfo *sinfo; |
| 1587 | struct sctp_initmsg *sinit; |
| 1588 | sctp_assoc_t associd = 0; |
| 1589 | sctp_cmsgs_t cmsgs = { NULL }; |
| 1590 | int err; |
| 1591 | sctp_scope_t scope; |
| 1592 | long timeo; |
| 1593 | __u16 sinfo_flags = 0; |
| 1594 | struct sctp_datamsg *datamsg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | int msg_flags = msg->msg_flags; |
| 1596 | |
| 1597 | SCTP_DEBUG_PRINTK("sctp_sendmsg(sk: %p, msg: %p, msg_len: %zu)\n", |
| 1598 | sk, msg, msg_len); |
| 1599 | |
| 1600 | err = 0; |
| 1601 | sp = sctp_sk(sk); |
| 1602 | ep = sp->ep; |
| 1603 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 1604 | SCTP_DEBUG_PRINTK("Using endpoint: %p.\n", ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | |
| 1606 | /* We cannot send a message over a TCP-style listening socket. */ |
| 1607 | if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) { |
| 1608 | err = -EPIPE; |
| 1609 | goto out_nounlock; |
| 1610 | } |
| 1611 | |
| 1612 | /* Parse out the SCTP CMSGs. */ |
| 1613 | err = sctp_msghdr_parse(msg, &cmsgs); |
| 1614 | |
| 1615 | if (err) { |
| 1616 | SCTP_DEBUG_PRINTK("msghdr parse err = %x\n", err); |
| 1617 | goto out_nounlock; |
| 1618 | } |
| 1619 | |
| 1620 | /* Fetch the destination address for this packet. This |
| 1621 | * address only selects the association--it is not necessarily |
| 1622 | * the address we will send to. |
| 1623 | * For a peeled-off socket, msg_name is ignored. |
| 1624 | */ |
| 1625 | if (!sctp_style(sk, UDP_HIGH_BANDWIDTH) && msg->msg_name) { |
| 1626 | int msg_namelen = msg->msg_namelen; |
| 1627 | |
| 1628 | err = sctp_verify_addr(sk, (union sctp_addr *)msg->msg_name, |
| 1629 | msg_namelen); |
| 1630 | if (err) |
| 1631 | return err; |
| 1632 | |
| 1633 | if (msg_namelen > sizeof(to)) |
| 1634 | msg_namelen = sizeof(to); |
| 1635 | memcpy(&to, msg->msg_name, msg_namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | msg_name = msg->msg_name; |
| 1637 | } |
| 1638 | |
| 1639 | sinfo = cmsgs.info; |
| 1640 | sinit = cmsgs.init; |
| 1641 | |
| 1642 | /* Did the user specify SNDRCVINFO? */ |
| 1643 | if (sinfo) { |
| 1644 | sinfo_flags = sinfo->sinfo_flags; |
| 1645 | associd = sinfo->sinfo_assoc_id; |
| 1646 | } |
| 1647 | |
| 1648 | SCTP_DEBUG_PRINTK("msg_len: %zu, sinfo_flags: 0x%x\n", |
| 1649 | msg_len, sinfo_flags); |
| 1650 | |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1651 | /* SCTP_EOF or SCTP_ABORT cannot be set on a TCP-style socket. */ |
| 1652 | if (sctp_style(sk, TCP) && (sinfo_flags & (SCTP_EOF | SCTP_ABORT))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | err = -EINVAL; |
| 1654 | goto out_nounlock; |
| 1655 | } |
| 1656 | |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1657 | /* If SCTP_EOF is set, no data can be sent. Disallow sending zero |
| 1658 | * length messages when SCTP_EOF|SCTP_ABORT is not set. |
| 1659 | * If SCTP_ABORT is set, the message length could be non zero with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | * the msg_iov set to the user abort reason. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1661 | */ |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1662 | if (((sinfo_flags & SCTP_EOF) && (msg_len > 0)) || |
| 1663 | (!(sinfo_flags & (SCTP_EOF|SCTP_ABORT)) && (msg_len == 0))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | err = -EINVAL; |
| 1665 | goto out_nounlock; |
| 1666 | } |
| 1667 | |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1668 | /* If SCTP_ADDR_OVER is set, there must be an address |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | * specified in msg_name. |
| 1670 | */ |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1671 | if ((sinfo_flags & SCTP_ADDR_OVER) && (!msg->msg_name)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | err = -EINVAL; |
| 1673 | goto out_nounlock; |
| 1674 | } |
| 1675 | |
| 1676 | transport = NULL; |
| 1677 | |
| 1678 | SCTP_DEBUG_PRINTK("About to look up association.\n"); |
| 1679 | |
| 1680 | sctp_lock_sock(sk); |
| 1681 | |
| 1682 | /* If a msg_name has been specified, assume this is to be used. */ |
| 1683 | if (msg_name) { |
| 1684 | /* Look for a matching association on the endpoint. */ |
Al Viro | dce116a | 2006-11-20 17:25:15 -0800 | [diff] [blame] | 1685 | asoc = sctp_endpoint_lookup_assoc(ep, &to, &transport); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | if (!asoc) { |
| 1687 | /* If we could not find a matching association on the |
| 1688 | * endpoint, make sure that it is not a TCP-style |
| 1689 | * socket that already has an association or there is |
| 1690 | * no peeled-off association on another socket. |
| 1691 | */ |
| 1692 | if ((sctp_style(sk, TCP) && |
| 1693 | sctp_sstate(sk, ESTABLISHED)) || |
Al Viro | dce116a | 2006-11-20 17:25:15 -0800 | [diff] [blame] | 1694 | sctp_endpoint_is_peeled_off(ep, &to)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | err = -EADDRNOTAVAIL; |
| 1696 | goto out_unlock; |
| 1697 | } |
| 1698 | } |
| 1699 | } else { |
| 1700 | asoc = sctp_id2assoc(sk, associd); |
| 1701 | if (!asoc) { |
| 1702 | err = -EPIPE; |
| 1703 | goto out_unlock; |
| 1704 | } |
| 1705 | } |
| 1706 | |
| 1707 | if (asoc) { |
| 1708 | SCTP_DEBUG_PRINTK("Just looked up association: %p.\n", asoc); |
| 1709 | |
| 1710 | /* We cannot send a message on a TCP-style SCTP_SS_ESTABLISHED |
| 1711 | * socket that has an association in CLOSED state. This can |
| 1712 | * happen when an accepted socket has an association that is |
| 1713 | * already CLOSED. |
| 1714 | */ |
| 1715 | if (sctp_state(asoc, CLOSED) && sctp_style(sk, TCP)) { |
| 1716 | err = -EPIPE; |
| 1717 | goto out_unlock; |
| 1718 | } |
| 1719 | |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1720 | if (sinfo_flags & SCTP_EOF) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | SCTP_DEBUG_PRINTK("Shutting down association: %p\n", |
| 1722 | asoc); |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1723 | sctp_primitive_SHUTDOWN(net, asoc, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | err = 0; |
| 1725 | goto out_unlock; |
| 1726 | } |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1727 | if (sinfo_flags & SCTP_ABORT) { |
Sridhar Samudrala | c164a9b | 2006-08-22 11:50:39 -0700 | [diff] [blame] | 1728 | |
| 1729 | chunk = sctp_make_abort_user(asoc, msg, msg_len); |
| 1730 | if (!chunk) { |
| 1731 | err = -ENOMEM; |
| 1732 | goto out_unlock; |
| 1733 | } |
| 1734 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | SCTP_DEBUG_PRINTK("Aborting association: %p\n", asoc); |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1736 | sctp_primitive_ABORT(net, asoc, chunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | err = 0; |
| 1738 | goto out_unlock; |
| 1739 | } |
| 1740 | } |
| 1741 | |
| 1742 | /* Do we need to create the association? */ |
| 1743 | if (!asoc) { |
| 1744 | SCTP_DEBUG_PRINTK("There is no association yet.\n"); |
| 1745 | |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1746 | if (sinfo_flags & (SCTP_EOF | SCTP_ABORT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | err = -EINVAL; |
| 1748 | goto out_unlock; |
| 1749 | } |
| 1750 | |
| 1751 | /* Check for invalid stream against the stream counts, |
| 1752 | * either the default or the user specified stream counts. |
| 1753 | */ |
| 1754 | if (sinfo) { |
| 1755 | if (!sinit || (sinit && !sinit->sinit_num_ostreams)) { |
| 1756 | /* Check against the defaults. */ |
| 1757 | if (sinfo->sinfo_stream >= |
| 1758 | sp->initmsg.sinit_num_ostreams) { |
| 1759 | err = -EINVAL; |
| 1760 | goto out_unlock; |
| 1761 | } |
| 1762 | } else { |
| 1763 | /* Check against the requested. */ |
| 1764 | if (sinfo->sinfo_stream >= |
| 1765 | sinit->sinit_num_ostreams) { |
| 1766 | err = -EINVAL; |
| 1767 | goto out_unlock; |
| 1768 | } |
| 1769 | } |
| 1770 | } |
| 1771 | |
| 1772 | /* |
| 1773 | * API 3.1.2 bind() - UDP Style Syntax |
| 1774 | * If a bind() or sctp_bindx() is not called prior to a |
| 1775 | * sendmsg() call that initiates a new association, the |
| 1776 | * system picks an ephemeral port and will choose an address |
| 1777 | * set equivalent to binding with a wildcard address. |
| 1778 | */ |
| 1779 | if (!ep->base.bind_addr.port) { |
| 1780 | if (sctp_autobind(sk)) { |
| 1781 | err = -EAGAIN; |
| 1782 | goto out_unlock; |
| 1783 | } |
Ivan Skytte Jorgensen | 64a0c1c | 2005-10-28 15:39:02 -0700 | [diff] [blame] | 1784 | } else { |
| 1785 | /* |
| 1786 | * If an unprivileged user inherits a one-to-many |
| 1787 | * style socket with open associations on a privileged |
| 1788 | * port, it MAY be permitted to accept new associations, |
| 1789 | * but it SHOULD NOT be permitted to open new |
| 1790 | * associations. |
| 1791 | */ |
| 1792 | if (ep->base.bind_addr.port < PROT_SOCK && |
Eric W. Biederman | 3594698 | 2012-11-16 03:03:12 +0000 | [diff] [blame] | 1793 | !ns_capable(net->user_ns, CAP_NET_BIND_SERVICE)) { |
Ivan Skytte Jorgensen | 64a0c1c | 2005-10-28 15:39:02 -0700 | [diff] [blame] | 1794 | err = -EACCES; |
| 1795 | goto out_unlock; |
| 1796 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | } |
| 1798 | |
| 1799 | scope = sctp_scope(&to); |
| 1800 | new_asoc = sctp_association_new(ep, sk, scope, GFP_KERNEL); |
| 1801 | if (!new_asoc) { |
| 1802 | err = -ENOMEM; |
| 1803 | goto out_unlock; |
| 1804 | } |
| 1805 | asoc = new_asoc; |
Vlad Yasevich | 409b95a | 2009-11-10 08:57:34 +0000 | [diff] [blame] | 1806 | err = sctp_assoc_set_bind_addr_from_ep(asoc, scope, GFP_KERNEL); |
| 1807 | if (err < 0) { |
| 1808 | err = -ENOMEM; |
| 1809 | goto out_free; |
| 1810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | |
| 1812 | /* If the SCTP_INIT ancillary data is specified, set all |
| 1813 | * the association init values accordingly. |
| 1814 | */ |
| 1815 | if (sinit) { |
| 1816 | if (sinit->sinit_num_ostreams) { |
| 1817 | asoc->c.sinit_num_ostreams = |
| 1818 | sinit->sinit_num_ostreams; |
| 1819 | } |
| 1820 | if (sinit->sinit_max_instreams) { |
| 1821 | asoc->c.sinit_max_instreams = |
| 1822 | sinit->sinit_max_instreams; |
| 1823 | } |
| 1824 | if (sinit->sinit_max_attempts) { |
| 1825 | asoc->max_init_attempts |
| 1826 | = sinit->sinit_max_attempts; |
| 1827 | } |
| 1828 | if (sinit->sinit_max_init_timeo) { |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 1829 | asoc->max_init_timeo = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | msecs_to_jiffies(sinit->sinit_max_init_timeo); |
| 1831 | } |
| 1832 | } |
| 1833 | |
| 1834 | /* Prime the peer's transport structures. */ |
Al Viro | dce116a | 2006-11-20 17:25:15 -0800 | [diff] [blame] | 1835 | transport = sctp_assoc_add_peer(asoc, &to, GFP_KERNEL, SCTP_UNKNOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | if (!transport) { |
| 1837 | err = -ENOMEM; |
| 1838 | goto out_free; |
| 1839 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | /* ASSERT: we have a valid association at this point. */ |
| 1843 | SCTP_DEBUG_PRINTK("We have a valid association.\n"); |
| 1844 | |
| 1845 | if (!sinfo) { |
| 1846 | /* If the user didn't specify SNDRCVINFO, make up one with |
| 1847 | * some defaults. |
| 1848 | */ |
Joe Perches | 517aa0b | 2011-05-12 11:27:20 +0000 | [diff] [blame] | 1849 | memset(&default_sinfo, 0, sizeof(default_sinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | default_sinfo.sinfo_stream = asoc->default_stream; |
| 1851 | default_sinfo.sinfo_flags = asoc->default_flags; |
| 1852 | default_sinfo.sinfo_ppid = asoc->default_ppid; |
| 1853 | default_sinfo.sinfo_context = asoc->default_context; |
| 1854 | default_sinfo.sinfo_timetolive = asoc->default_timetolive; |
| 1855 | default_sinfo.sinfo_assoc_id = sctp_assoc2id(asoc); |
| 1856 | sinfo = &default_sinfo; |
| 1857 | } |
| 1858 | |
| 1859 | /* API 7.1.7, the sndbuf size per association bounds the |
| 1860 | * maximum size of data that can be sent in a single send call. |
| 1861 | */ |
| 1862 | if (msg_len > sk->sk_sndbuf) { |
| 1863 | err = -EMSGSIZE; |
| 1864 | goto out_free; |
| 1865 | } |
| 1866 | |
Vlad Yasevich | 8a47949 | 2007-06-07 14:21:05 -0400 | [diff] [blame] | 1867 | if (asoc->pmtu_pending) |
David S. Miller | 02f3d4c | 2012-07-16 03:57:14 -0700 | [diff] [blame] | 1868 | sctp_assoc_pending_pmtu(sk, asoc); |
Vlad Yasevich | 8a47949 | 2007-06-07 14:21:05 -0400 | [diff] [blame] | 1869 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | /* If fragmentation is disabled and the message length exceeds the |
| 1871 | * association fragmentation point, return EMSGSIZE. The I-D |
| 1872 | * does not specify what this error is, but this looks like |
| 1873 | * a great fit. |
| 1874 | */ |
| 1875 | if (sctp_sk(sk)->disable_fragments && (msg_len > asoc->frag_point)) { |
| 1876 | err = -EMSGSIZE; |
| 1877 | goto out_free; |
| 1878 | } |
| 1879 | |
Joe Perches | afd7614 | 2011-05-12 09:19:10 +0000 | [diff] [blame] | 1880 | /* Check for invalid stream. */ |
| 1881 | if (sinfo->sinfo_stream >= asoc->c.sinit_num_ostreams) { |
| 1882 | err = -EINVAL; |
| 1883 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT); |
| 1887 | if (!sctp_wspace(asoc)) { |
| 1888 | err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len); |
| 1889 | if (err) |
| 1890 | goto out_free; |
| 1891 | } |
| 1892 | |
| 1893 | /* If an address is passed with the sendto/sendmsg call, it is used |
| 1894 | * to override the primary destination address in the TCP model, or |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1895 | * when SCTP_ADDR_OVER flag is set in the UDP model. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | */ |
| 1897 | if ((sctp_style(sk, TCP) && msg_name) || |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 1898 | (sinfo_flags & SCTP_ADDR_OVER)) { |
Al Viro | dce116a | 2006-11-20 17:25:15 -0800 | [diff] [blame] | 1899 | chunk_tp = sctp_assoc_lookup_paddr(asoc, &to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | if (!chunk_tp) { |
| 1901 | err = -EINVAL; |
| 1902 | goto out_free; |
| 1903 | } |
| 1904 | } else |
| 1905 | chunk_tp = NULL; |
| 1906 | |
| 1907 | /* Auto-connect, if we aren't connected already. */ |
| 1908 | if (sctp_state(asoc, CLOSED)) { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1909 | err = sctp_primitive_ASSOCIATE(net, asoc, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | if (err < 0) |
| 1911 | goto out_free; |
| 1912 | SCTP_DEBUG_PRINTK("We associated primitively.\n"); |
| 1913 | } |
| 1914 | |
| 1915 | /* Break the message into multiple chunks of maximum size. */ |
| 1916 | datamsg = sctp_datamsg_from_user(asoc, sinfo, msg, msg_len); |
Tommi Rantala | 6e51fe7 | 2012-11-22 03:23:16 +0000 | [diff] [blame] | 1917 | if (IS_ERR(datamsg)) { |
| 1918 | err = PTR_ERR(datamsg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | goto out_free; |
| 1920 | } |
| 1921 | |
| 1922 | /* Now send the (possibly) fragmented message. */ |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 1923 | list_for_each_entry(chunk, &datamsg->chunks, frag_list) { |
Florian Westphal | 80445cf | 2008-03-23 22:47:08 -0700 | [diff] [blame] | 1924 | sctp_chunk_hold(chunk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | |
| 1926 | /* Do accounting for the write space. */ |
| 1927 | sctp_set_owner_w(chunk); |
| 1928 | |
| 1929 | chunk->transport = chunk_tp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | } |
| 1931 | |
Vlad Yasevich | 9c5c62b | 2009-08-10 13:51:03 -0400 | [diff] [blame] | 1932 | /* Send it to the lower layers. Note: all chunks |
| 1933 | * must either fail or succeed. The lower layer |
| 1934 | * works that way today. Keep it that way or this |
| 1935 | * breaks. |
| 1936 | */ |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 1937 | err = sctp_primitive_SEND(net, asoc, datamsg); |
Vlad Yasevich | 9c5c62b | 2009-08-10 13:51:03 -0400 | [diff] [blame] | 1938 | /* Did the lower layer accept the chunk? */ |
| 1939 | if (err) |
| 1940 | sctp_datamsg_free(datamsg); |
| 1941 | else |
| 1942 | sctp_datamsg_put(datamsg); |
| 1943 | |
| 1944 | SCTP_DEBUG_PRINTK("We sent primitively.\n"); |
| 1945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | if (err) |
| 1947 | goto out_free; |
| 1948 | else |
| 1949 | err = msg_len; |
| 1950 | |
| 1951 | /* If we are already past ASSOCIATE, the lower |
| 1952 | * layers are responsible for association cleanup. |
| 1953 | */ |
| 1954 | goto out_unlock; |
| 1955 | |
| 1956 | out_free: |
Neil Horman | 2eebc1e | 2012-07-16 09:13:51 +0000 | [diff] [blame] | 1957 | if (new_asoc) { |
| 1958 | sctp_unhash_established(asoc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | sctp_association_free(asoc); |
Neil Horman | 2eebc1e | 2012-07-16 09:13:51 +0000 | [diff] [blame] | 1960 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | out_unlock: |
| 1962 | sctp_release_sock(sk); |
| 1963 | |
| 1964 | out_nounlock: |
| 1965 | return sctp_error(sk, msg_flags, err); |
| 1966 | |
| 1967 | #if 0 |
| 1968 | do_sock_err: |
| 1969 | if (msg_len) |
| 1970 | err = msg_len; |
| 1971 | else |
| 1972 | err = sock_error(sk); |
| 1973 | goto out; |
| 1974 | |
| 1975 | do_interrupted: |
| 1976 | if (msg_len) |
| 1977 | err = msg_len; |
| 1978 | goto out; |
| 1979 | #endif /* 0 */ |
| 1980 | } |
| 1981 | |
| 1982 | /* This is an extended version of skb_pull() that removes the data from the |
| 1983 | * start of a skb even when data is spread across the list of skb's in the |
| 1984 | * frag_list. len specifies the total amount of data that needs to be removed. |
| 1985 | * when 'len' bytes could be removed from the skb, it returns 0. |
| 1986 | * If 'len' exceeds the total skb length, it returns the no. of bytes that |
| 1987 | * could not be removed. |
| 1988 | */ |
| 1989 | static int sctp_skb_pull(struct sk_buff *skb, int len) |
| 1990 | { |
| 1991 | struct sk_buff *list; |
| 1992 | int skb_len = skb_headlen(skb); |
| 1993 | int rlen; |
| 1994 | |
| 1995 | if (len <= skb_len) { |
| 1996 | __skb_pull(skb, len); |
| 1997 | return 0; |
| 1998 | } |
| 1999 | len -= skb_len; |
| 2000 | __skb_pull(skb, skb_len); |
| 2001 | |
David S. Miller | 1b003be | 2009-06-09 00:22:35 -0700 | [diff] [blame] | 2002 | skb_walk_frags(skb, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | rlen = sctp_skb_pull(list, len); |
| 2004 | skb->len -= (len-rlen); |
| 2005 | skb->data_len -= (len-rlen); |
| 2006 | |
| 2007 | if (!rlen) |
| 2008 | return 0; |
| 2009 | |
| 2010 | len = rlen; |
| 2011 | } |
| 2012 | |
| 2013 | return len; |
| 2014 | } |
| 2015 | |
| 2016 | /* API 3.1.3 recvmsg() - UDP Style Syntax |
| 2017 | * |
| 2018 | * ssize_t recvmsg(int socket, struct msghdr *message, |
| 2019 | * int flags); |
| 2020 | * |
| 2021 | * socket - the socket descriptor of the endpoint. |
| 2022 | * message - pointer to the msghdr structure which contains a single |
| 2023 | * user message and possibly some ancillary data. |
| 2024 | * |
| 2025 | * See Section 5 for complete description of the data |
| 2026 | * structures. |
| 2027 | * |
| 2028 | * flags - flags sent or received with the user message, see Section |
| 2029 | * 5 for complete description of the flags. |
| 2030 | */ |
| 2031 | static struct sk_buff *sctp_skb_recv_datagram(struct sock *, int, int, int *); |
| 2032 | |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 2033 | static int sctp_recvmsg(struct kiocb *iocb, struct sock *sk, |
| 2034 | struct msghdr *msg, size_t len, int noblock, |
| 2035 | int flags, int *addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | { |
| 2037 | struct sctp_ulpevent *event = NULL; |
| 2038 | struct sctp_sock *sp = sctp_sk(sk); |
| 2039 | struct sk_buff *skb; |
| 2040 | int copied; |
| 2041 | int err = 0; |
| 2042 | int skb_len; |
| 2043 | |
| 2044 | SCTP_DEBUG_PRINTK("sctp_recvmsg(%s: %p, %s: %p, %s: %zd, %s: %d, %s: " |
| 2045 | "0x%x, %s: %p)\n", "sk", sk, "msghdr", msg, |
| 2046 | "len", len, "knoblauch", noblock, |
| 2047 | "flags", flags, "addr_len", addr_len); |
| 2048 | |
| 2049 | sctp_lock_sock(sk); |
| 2050 | |
| 2051 | if (sctp_style(sk, TCP) && !sctp_sstate(sk, ESTABLISHED)) { |
| 2052 | err = -ENOTCONN; |
| 2053 | goto out; |
| 2054 | } |
| 2055 | |
| 2056 | skb = sctp_skb_recv_datagram(sk, flags, noblock, &err); |
| 2057 | if (!skb) |
| 2058 | goto out; |
| 2059 | |
| 2060 | /* Get the total length of the skb including any skb's in the |
| 2061 | * frag_list. |
| 2062 | */ |
| 2063 | skb_len = skb->len; |
| 2064 | |
| 2065 | copied = skb_len; |
| 2066 | if (copied > len) |
| 2067 | copied = len; |
| 2068 | |
| 2069 | err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied); |
| 2070 | |
| 2071 | event = sctp_skb2event(skb); |
| 2072 | |
| 2073 | if (err) |
| 2074 | goto out_free; |
| 2075 | |
Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 2076 | sock_recv_ts_and_drops(msg, sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | if (sctp_ulpevent_is_notification(event)) { |
| 2078 | msg->msg_flags |= MSG_NOTIFICATION; |
| 2079 | sp->pf->event_msgname(event, msg->msg_name, addr_len); |
| 2080 | } else { |
| 2081 | sp->pf->skb_msgname(skb, msg->msg_name, addr_len); |
| 2082 | } |
| 2083 | |
| 2084 | /* Check if we allow SCTP_SNDRCVINFO. */ |
| 2085 | if (sp->subscribe.sctp_data_io_event) |
| 2086 | sctp_ulpevent_read_sndrcvinfo(event, msg); |
| 2087 | #if 0 |
| 2088 | /* FIXME: we should be calling IP/IPv6 layers. */ |
| 2089 | if (sk->sk_protinfo.af_inet.cmsg_flags) |
| 2090 | ip_cmsg_recv(msg, skb); |
| 2091 | #endif |
| 2092 | |
| 2093 | err = copied; |
| 2094 | |
| 2095 | /* If skb's length exceeds the user's buffer, update the skb and |
| 2096 | * push it back to the receive_queue so that the next call to |
| 2097 | * recvmsg() will return the remaining data. Don't set MSG_EOR. |
| 2098 | */ |
| 2099 | if (skb_len > copied) { |
| 2100 | msg->msg_flags &= ~MSG_EOR; |
| 2101 | if (flags & MSG_PEEK) |
| 2102 | goto out_free; |
| 2103 | sctp_skb_pull(skb, copied); |
| 2104 | skb_queue_head(&sk->sk_receive_queue, skb); |
| 2105 | |
| 2106 | /* When only partial message is copied to the user, increase |
| 2107 | * rwnd by that amount. If all the data in the skb is read, |
| 2108 | * rwnd is updated when the event is freed. |
| 2109 | */ |
Vlad Yasevich | 0eca8fe | 2008-01-11 10:12:56 -0500 | [diff] [blame] | 2110 | if (!sctp_ulpevent_is_notification(event)) |
| 2111 | sctp_assoc_rwnd_increase(event->asoc, copied); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | goto out; |
| 2113 | } else if ((event->msg_flags & MSG_NOTIFICATION) || |
| 2114 | (event->msg_flags & MSG_EOR)) |
| 2115 | msg->msg_flags |= MSG_EOR; |
| 2116 | else |
| 2117 | msg->msg_flags &= ~MSG_EOR; |
| 2118 | |
| 2119 | out_free: |
| 2120 | if (flags & MSG_PEEK) { |
| 2121 | /* Release the skb reference acquired after peeking the skb in |
| 2122 | * sctp_skb_recv_datagram(). |
| 2123 | */ |
| 2124 | kfree_skb(skb); |
| 2125 | } else { |
| 2126 | /* Free the event which includes releasing the reference to |
| 2127 | * the owner of the skb, freeing the skb and updating the |
| 2128 | * rwnd. |
| 2129 | */ |
| 2130 | sctp_ulpevent_free(event); |
| 2131 | } |
| 2132 | out: |
| 2133 | sctp_release_sock(sk); |
| 2134 | return err; |
| 2135 | } |
| 2136 | |
| 2137 | /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS) |
| 2138 | * |
| 2139 | * This option is a on/off flag. If enabled no SCTP message |
| 2140 | * fragmentation will be performed. Instead if a message being sent |
| 2141 | * exceeds the current PMTU size, the message will NOT be sent and |
| 2142 | * instead a error will be indicated to the user. |
| 2143 | */ |
| 2144 | static int sctp_setsockopt_disable_fragments(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2145 | char __user *optval, |
| 2146 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | { |
| 2148 | int val; |
| 2149 | |
| 2150 | if (optlen < sizeof(int)) |
| 2151 | return -EINVAL; |
| 2152 | |
| 2153 | if (get_user(val, (int __user *)optval)) |
| 2154 | return -EFAULT; |
| 2155 | |
| 2156 | sctp_sk(sk)->disable_fragments = (val == 0) ? 0 : 1; |
| 2157 | |
| 2158 | return 0; |
| 2159 | } |
| 2160 | |
| 2161 | static int sctp_setsockopt_events(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2162 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | { |
Wei Yongjun | 9491230 | 2011-07-02 09:28:04 +0000 | [diff] [blame] | 2164 | struct sctp_association *asoc; |
| 2165 | struct sctp_ulpevent *event; |
| 2166 | |
Vlad Yasevich | 7e8616d | 2008-02-27 16:04:52 -0500 | [diff] [blame] | 2167 | if (optlen > sizeof(struct sctp_event_subscribe)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | return -EINVAL; |
| 2169 | if (copy_from_user(&sctp_sk(sk)->subscribe, optval, optlen)) |
| 2170 | return -EFAULT; |
Wei Yongjun | 9491230 | 2011-07-02 09:28:04 +0000 | [diff] [blame] | 2171 | |
| 2172 | /* |
| 2173 | * At the time when a user app subscribes to SCTP_SENDER_DRY_EVENT, |
| 2174 | * if there is no data to be sent or retransmit, the stack will |
| 2175 | * immediately send up this notification. |
| 2176 | */ |
| 2177 | if (sctp_ulpevent_type_enabled(SCTP_SENDER_DRY_EVENT, |
| 2178 | &sctp_sk(sk)->subscribe)) { |
| 2179 | asoc = sctp_id2assoc(sk, 0); |
| 2180 | |
| 2181 | if (asoc && sctp_outq_is_empty(&asoc->outqueue)) { |
| 2182 | event = sctp_ulpevent_make_sender_dry_event(asoc, |
| 2183 | GFP_ATOMIC); |
| 2184 | if (!event) |
| 2185 | return -ENOMEM; |
| 2186 | |
| 2187 | sctp_ulpq_tail_event(&asoc->ulpq, event); |
| 2188 | } |
| 2189 | } |
| 2190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | return 0; |
| 2192 | } |
| 2193 | |
| 2194 | /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE) |
| 2195 | * |
| 2196 | * This socket option is applicable to the UDP-style socket only. When |
| 2197 | * set it will cause associations that are idle for more than the |
| 2198 | * specified number of seconds to automatically close. An association |
| 2199 | * being idle is defined an association that has NOT sent or received |
| 2200 | * user data. The special value of '0' indicates that no automatic |
| 2201 | * close of any associations should be performed. The option expects an |
| 2202 | * integer defining the number of seconds of idle time before an |
| 2203 | * association is closed. |
| 2204 | */ |
| 2205 | static int sctp_setsockopt_autoclose(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2206 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | { |
| 2208 | struct sctp_sock *sp = sctp_sk(sk); |
| 2209 | |
| 2210 | /* Applicable to UDP-style socket only */ |
| 2211 | if (sctp_style(sk, TCP)) |
| 2212 | return -EOPNOTSUPP; |
| 2213 | if (optlen != sizeof(int)) |
| 2214 | return -EINVAL; |
| 2215 | if (copy_from_user(&sp->autoclose, optval, optlen)) |
| 2216 | return -EFAULT; |
| 2217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | return 0; |
| 2219 | } |
| 2220 | |
| 2221 | /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS) |
| 2222 | * |
| 2223 | * Applications can enable or disable heartbeats for any peer address of |
| 2224 | * an association, modify an address's heartbeat interval, force a |
| 2225 | * heartbeat to be sent immediately, and adjust the address's maximum |
| 2226 | * number of retransmissions sent before an address is considered |
| 2227 | * unreachable. The following structure is used to access and modify an |
| 2228 | * address's parameters: |
| 2229 | * |
| 2230 | * struct sctp_paddrparams { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2231 | * sctp_assoc_t spp_assoc_id; |
| 2232 | * struct sockaddr_storage spp_address; |
| 2233 | * uint32_t spp_hbinterval; |
| 2234 | * uint16_t spp_pathmaxrxt; |
| 2235 | * uint32_t spp_pathmtu; |
| 2236 | * uint32_t spp_sackdelay; |
| 2237 | * uint32_t spp_flags; |
| 2238 | * }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | * |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2240 | * spp_assoc_id - (one-to-many style socket) This is filled in the |
| 2241 | * application, and identifies the association for |
| 2242 | * this query. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | * spp_address - This specifies which address is of interest. |
| 2244 | * spp_hbinterval - This contains the value of the heartbeat interval, |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2245 | * in milliseconds. If a value of zero |
| 2246 | * is present in this field then no changes are to |
| 2247 | * be made to this parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | * spp_pathmaxrxt - This contains the maximum number of |
| 2249 | * retransmissions before this address shall be |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2250 | * considered unreachable. If a value of zero |
| 2251 | * is present in this field then no changes are to |
| 2252 | * be made to this parameter. |
| 2253 | * spp_pathmtu - When Path MTU discovery is disabled the value |
| 2254 | * specified here will be the "fixed" path mtu. |
| 2255 | * Note that if the spp_address field is empty |
| 2256 | * then all associations on this address will |
| 2257 | * have this fixed path mtu set upon them. |
| 2258 | * |
| 2259 | * spp_sackdelay - When delayed sack is enabled, this value specifies |
| 2260 | * the number of milliseconds that sacks will be delayed |
| 2261 | * for. This value will apply to all addresses of an |
| 2262 | * association if the spp_address field is empty. Note |
| 2263 | * also, that if delayed sack is enabled and this |
| 2264 | * value is set to 0, no change is made to the last |
| 2265 | * recorded delayed sack timer value. |
| 2266 | * |
| 2267 | * spp_flags - These flags are used to control various features |
| 2268 | * on an association. The flag field may contain |
| 2269 | * zero or more of the following options. |
| 2270 | * |
| 2271 | * SPP_HB_ENABLE - Enable heartbeats on the |
| 2272 | * specified address. Note that if the address |
| 2273 | * field is empty all addresses for the association |
| 2274 | * have heartbeats enabled upon them. |
| 2275 | * |
| 2276 | * SPP_HB_DISABLE - Disable heartbeats on the |
| 2277 | * speicifed address. Note that if the address |
| 2278 | * field is empty all addresses for the association |
| 2279 | * will have their heartbeats disabled. Note also |
| 2280 | * that SPP_HB_ENABLE and SPP_HB_DISABLE are |
| 2281 | * mutually exclusive, only one of these two should |
| 2282 | * be specified. Enabling both fields will have |
| 2283 | * undetermined results. |
| 2284 | * |
| 2285 | * SPP_HB_DEMAND - Request a user initiated heartbeat |
| 2286 | * to be made immediately. |
| 2287 | * |
Vlad Yasevich | bdf3092 | 2007-03-23 11:33:12 -0700 | [diff] [blame] | 2288 | * SPP_HB_TIME_IS_ZERO - Specify's that the time for |
| 2289 | * heartbeat delayis to be set to the value of 0 |
| 2290 | * milliseconds. |
| 2291 | * |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2292 | * SPP_PMTUD_ENABLE - This field will enable PMTU |
| 2293 | * discovery upon the specified address. Note that |
| 2294 | * if the address feild is empty then all addresses |
| 2295 | * on the association are effected. |
| 2296 | * |
| 2297 | * SPP_PMTUD_DISABLE - This field will disable PMTU |
| 2298 | * discovery upon the specified address. Note that |
| 2299 | * if the address feild is empty then all addresses |
| 2300 | * on the association are effected. Not also that |
| 2301 | * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually |
| 2302 | * exclusive. Enabling both will have undetermined |
| 2303 | * results. |
| 2304 | * |
| 2305 | * SPP_SACKDELAY_ENABLE - Setting this flag turns |
| 2306 | * on delayed sack. The time specified in spp_sackdelay |
| 2307 | * is used to specify the sack delay for this address. Note |
| 2308 | * that if spp_address is empty then all addresses will |
| 2309 | * enable delayed sack and take on the sack delay |
| 2310 | * value specified in spp_sackdelay. |
| 2311 | * SPP_SACKDELAY_DISABLE - Setting this flag turns |
| 2312 | * off delayed sack. If the spp_address field is blank then |
| 2313 | * delayed sack is disabled for the entire association. Note |
| 2314 | * also that this field is mutually exclusive to |
| 2315 | * SPP_SACKDELAY_ENABLE, setting both will have undefined |
| 2316 | * results. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | */ |
Adrian Bunk | 1616436 | 2006-09-18 00:40:38 -0700 | [diff] [blame] | 2318 | static int sctp_apply_peer_addr_params(struct sctp_paddrparams *params, |
| 2319 | struct sctp_transport *trans, |
| 2320 | struct sctp_association *asoc, |
| 2321 | struct sctp_sock *sp, |
| 2322 | int hb_change, |
| 2323 | int pmtud_change, |
| 2324 | int sackdelay_change) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | int error; |
| 2327 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2328 | if (params->spp_flags & SPP_HB_DEMAND && trans) { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 2329 | struct net *net = sock_net(trans->asoc->base.sk); |
| 2330 | |
| 2331 | error = sctp_primitive_REQUESTHEARTBEAT(net, trans->asoc, trans); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | if (error) |
| 2333 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2334 | } |
| 2335 | |
Vlad Yasevich | bdf3092 | 2007-03-23 11:33:12 -0700 | [diff] [blame] | 2336 | /* Note that unless the spp_flag is set to SPP_HB_ENABLE the value of |
| 2337 | * this field is ignored. Note also that a value of zero indicates |
| 2338 | * the current setting should be left unchanged. |
| 2339 | */ |
| 2340 | if (params->spp_flags & SPP_HB_ENABLE) { |
| 2341 | |
| 2342 | /* Re-zero the interval if the SPP_HB_TIME_IS_ZERO is |
| 2343 | * set. This lets us use 0 value when this flag |
| 2344 | * is set. |
| 2345 | */ |
| 2346 | if (params->spp_flags & SPP_HB_TIME_IS_ZERO) |
| 2347 | params->spp_hbinterval = 0; |
| 2348 | |
| 2349 | if (params->spp_hbinterval || |
| 2350 | (params->spp_flags & SPP_HB_TIME_IS_ZERO)) { |
| 2351 | if (trans) { |
| 2352 | trans->hbinterval = |
| 2353 | msecs_to_jiffies(params->spp_hbinterval); |
| 2354 | } else if (asoc) { |
| 2355 | asoc->hbinterval = |
| 2356 | msecs_to_jiffies(params->spp_hbinterval); |
| 2357 | } else { |
| 2358 | sp->hbinterval = params->spp_hbinterval; |
| 2359 | } |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2360 | } |
| 2361 | } |
| 2362 | |
| 2363 | if (hb_change) { |
| 2364 | if (trans) { |
| 2365 | trans->param_flags = |
| 2366 | (trans->param_flags & ~SPP_HB) | hb_change; |
| 2367 | } else if (asoc) { |
| 2368 | asoc->param_flags = |
| 2369 | (asoc->param_flags & ~SPP_HB) | hb_change; |
| 2370 | } else { |
| 2371 | sp->param_flags = |
| 2372 | (sp->param_flags & ~SPP_HB) | hb_change; |
| 2373 | } |
| 2374 | } |
| 2375 | |
Vlad Yasevich | bdf3092 | 2007-03-23 11:33:12 -0700 | [diff] [blame] | 2376 | /* When Path MTU discovery is disabled the value specified here will |
| 2377 | * be the "fixed" path mtu (i.e. the value of the spp_flags field must |
| 2378 | * include the flag SPP_PMTUD_DISABLE for this field to have any |
| 2379 | * effect). |
| 2380 | */ |
| 2381 | if ((params->spp_flags & SPP_PMTUD_DISABLE) && params->spp_pathmtu) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2382 | if (trans) { |
| 2383 | trans->pathmtu = params->spp_pathmtu; |
David S. Miller | 02f3d4c | 2012-07-16 03:57:14 -0700 | [diff] [blame] | 2384 | sctp_assoc_sync_pmtu(sctp_opt2sk(sp), asoc); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2385 | } else if (asoc) { |
| 2386 | asoc->pathmtu = params->spp_pathmtu; |
Vlad Yasevich | f68b2e0 | 2009-09-04 18:21:00 -0400 | [diff] [blame] | 2387 | sctp_frag_point(asoc, params->spp_pathmtu); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2388 | } else { |
| 2389 | sp->pathmtu = params->spp_pathmtu; |
| 2390 | } |
| 2391 | } |
| 2392 | |
| 2393 | if (pmtud_change) { |
| 2394 | if (trans) { |
| 2395 | int update = (trans->param_flags & SPP_PMTUD_DISABLE) && |
| 2396 | (params->spp_flags & SPP_PMTUD_ENABLE); |
| 2397 | trans->param_flags = |
| 2398 | (trans->param_flags & ~SPP_PMTUD) | pmtud_change; |
| 2399 | if (update) { |
Vlad Yasevich | 9914ae3 | 2011-04-26 21:51:31 +0000 | [diff] [blame] | 2400 | sctp_transport_pmtu(trans, sctp_opt2sk(sp)); |
David S. Miller | 02f3d4c | 2012-07-16 03:57:14 -0700 | [diff] [blame] | 2401 | sctp_assoc_sync_pmtu(sctp_opt2sk(sp), asoc); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2402 | } |
| 2403 | } else if (asoc) { |
| 2404 | asoc->param_flags = |
| 2405 | (asoc->param_flags & ~SPP_PMTUD) | pmtud_change; |
| 2406 | } else { |
| 2407 | sp->param_flags = |
| 2408 | (sp->param_flags & ~SPP_PMTUD) | pmtud_change; |
| 2409 | } |
| 2410 | } |
| 2411 | |
Vlad Yasevich | bdf3092 | 2007-03-23 11:33:12 -0700 | [diff] [blame] | 2412 | /* Note that unless the spp_flag is set to SPP_SACKDELAY_ENABLE the |
| 2413 | * value of this field is ignored. Note also that a value of zero |
| 2414 | * indicates the current setting should be left unchanged. |
| 2415 | */ |
| 2416 | if ((params->spp_flags & SPP_SACKDELAY_ENABLE) && params->spp_sackdelay) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2417 | if (trans) { |
| 2418 | trans->sackdelay = |
| 2419 | msecs_to_jiffies(params->spp_sackdelay); |
| 2420 | } else if (asoc) { |
| 2421 | asoc->sackdelay = |
| 2422 | msecs_to_jiffies(params->spp_sackdelay); |
| 2423 | } else { |
| 2424 | sp->sackdelay = params->spp_sackdelay; |
| 2425 | } |
| 2426 | } |
| 2427 | |
| 2428 | if (sackdelay_change) { |
| 2429 | if (trans) { |
| 2430 | trans->param_flags = |
| 2431 | (trans->param_flags & ~SPP_SACKDELAY) | |
| 2432 | sackdelay_change; |
| 2433 | } else if (asoc) { |
| 2434 | asoc->param_flags = |
| 2435 | (asoc->param_flags & ~SPP_SACKDELAY) | |
| 2436 | sackdelay_change; |
| 2437 | } else { |
| 2438 | sp->param_flags = |
| 2439 | (sp->param_flags & ~SPP_SACKDELAY) | |
| 2440 | sackdelay_change; |
| 2441 | } |
| 2442 | } |
| 2443 | |
Andrei Pelinescu-Onciul | 37051f7 | 2009-11-23 15:53:57 -0500 | [diff] [blame] | 2444 | /* Note that a value of zero indicates the current setting should be |
| 2445 | left unchanged. |
Vlad Yasevich | bdf3092 | 2007-03-23 11:33:12 -0700 | [diff] [blame] | 2446 | */ |
Andrei Pelinescu-Onciul | 37051f7 | 2009-11-23 15:53:57 -0500 | [diff] [blame] | 2447 | if (params->spp_pathmaxrxt) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2448 | if (trans) { |
| 2449 | trans->pathmaxrxt = params->spp_pathmaxrxt; |
| 2450 | } else if (asoc) { |
| 2451 | asoc->pathmaxrxt = params->spp_pathmaxrxt; |
| 2452 | } else { |
| 2453 | sp->pathmaxrxt = params->spp_pathmaxrxt; |
| 2454 | } |
| 2455 | } |
| 2456 | |
| 2457 | return 0; |
| 2458 | } |
| 2459 | |
| 2460 | static int sctp_setsockopt_peer_addr_params(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2461 | char __user *optval, |
| 2462 | unsigned int optlen) |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2463 | { |
| 2464 | struct sctp_paddrparams params; |
| 2465 | struct sctp_transport *trans = NULL; |
| 2466 | struct sctp_association *asoc = NULL; |
| 2467 | struct sctp_sock *sp = sctp_sk(sk); |
| 2468 | int error; |
| 2469 | int hb_change, pmtud_change, sackdelay_change; |
| 2470 | |
| 2471 | if (optlen != sizeof(struct sctp_paddrparams)) |
| 2472 | return - EINVAL; |
| 2473 | |
| 2474 | if (copy_from_user(¶ms, optval, optlen)) |
| 2475 | return -EFAULT; |
| 2476 | |
| 2477 | /* Validate flags and value parameters. */ |
| 2478 | hb_change = params.spp_flags & SPP_HB; |
| 2479 | pmtud_change = params.spp_flags & SPP_PMTUD; |
| 2480 | sackdelay_change = params.spp_flags & SPP_SACKDELAY; |
| 2481 | |
| 2482 | if (hb_change == SPP_HB || |
| 2483 | pmtud_change == SPP_PMTUD || |
| 2484 | sackdelay_change == SPP_SACKDELAY || |
| 2485 | params.spp_sackdelay > 500 || |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 2486 | (params.spp_pathmtu && |
| 2487 | params.spp_pathmtu < SCTP_DEFAULT_MINSEGMENT)) |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2488 | return -EINVAL; |
| 2489 | |
| 2490 | /* If an address other than INADDR_ANY is specified, and |
| 2491 | * no transport is found, then the request is invalid. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | */ |
Vlad Yasevich | 52cae8f | 2008-08-18 10:34:34 -0400 | [diff] [blame] | 2493 | if (!sctp_is_any(sk, ( union sctp_addr *)¶ms.spp_address)) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2494 | trans = sctp_addr_id2transport(sk, ¶ms.spp_address, |
| 2495 | params.spp_assoc_id); |
| 2496 | if (!trans) |
| 2497 | return -EINVAL; |
| 2498 | } |
| 2499 | |
| 2500 | /* Get association, if assoc_id != 0 and the socket is a one |
| 2501 | * to many style socket, and an association was not found, then |
| 2502 | * the id was invalid. |
| 2503 | */ |
| 2504 | asoc = sctp_id2assoc(sk, params.spp_assoc_id); |
| 2505 | if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) |
| 2506 | return -EINVAL; |
| 2507 | |
| 2508 | /* Heartbeat demand can only be sent on a transport or |
| 2509 | * association, but not a socket. |
| 2510 | */ |
| 2511 | if (params.spp_flags & SPP_HB_DEMAND && !trans && !asoc) |
| 2512 | return -EINVAL; |
| 2513 | |
| 2514 | /* Process parameters. */ |
| 2515 | error = sctp_apply_peer_addr_params(¶ms, trans, asoc, sp, |
| 2516 | hb_change, pmtud_change, |
| 2517 | sackdelay_change); |
| 2518 | |
| 2519 | if (error) |
| 2520 | return error; |
| 2521 | |
| 2522 | /* If changes are for association, also apply parameters to each |
| 2523 | * transport. |
| 2524 | */ |
| 2525 | if (!trans && asoc) { |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 2526 | list_for_each_entry(trans, &asoc->peer.transport_addr_list, |
| 2527 | transports) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 2528 | sctp_apply_peer_addr_params(¶ms, trans, asoc, sp, |
| 2529 | hb_change, pmtud_change, |
| 2530 | sackdelay_change); |
| 2531 | } |
| 2532 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | |
| 2534 | return 0; |
| 2535 | } |
| 2536 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2537 | /* |
| 2538 | * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2539 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2540 | * This option will effect the way delayed acks are performed. This |
| 2541 | * option allows you to get or set the delayed ack time, in |
| 2542 | * milliseconds. It also allows changing the delayed ack frequency. |
| 2543 | * Changing the frequency to 1 disables the delayed sack algorithm. If |
| 2544 | * the assoc_id is 0, then this sets or gets the endpoints default |
| 2545 | * values. If the assoc_id field is non-zero, then the set or get |
| 2546 | * effects the specified association for the one to many model (the |
| 2547 | * assoc_id field is ignored by the one to one model). Note that if |
| 2548 | * sack_delay or sack_freq are 0 when setting this option, then the |
| 2549 | * current values will remain unchanged. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2550 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2551 | * struct sctp_sack_info { |
| 2552 | * sctp_assoc_t sack_assoc_id; |
| 2553 | * uint32_t sack_delay; |
| 2554 | * uint32_t sack_freq; |
| 2555 | * }; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2556 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2557 | * sack_assoc_id - This parameter, indicates which association the user |
| 2558 | * is performing an action upon. Note that if this field's value is |
| 2559 | * zero then the endpoints default value is changed (effecting future |
| 2560 | * associations only). |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2561 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2562 | * sack_delay - This parameter contains the number of milliseconds that |
| 2563 | * the user is requesting the delayed ACK timer be set to. Note that |
| 2564 | * this value is defined in the standard to be between 200 and 500 |
| 2565 | * milliseconds. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2566 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2567 | * sack_freq - This parameter contains the number of packets that must |
| 2568 | * be received before a sack is sent without waiting for the delay |
| 2569 | * timer to expire. The default value for this is 2, setting this |
| 2570 | * value to 1 will disable the delayed sack algorithm. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2571 | */ |
| 2572 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2573 | static int sctp_setsockopt_delayed_ack(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2574 | char __user *optval, unsigned int optlen) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2575 | { |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2576 | struct sctp_sack_info params; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2577 | struct sctp_transport *trans = NULL; |
| 2578 | struct sctp_association *asoc = NULL; |
| 2579 | struct sctp_sock *sp = sctp_sk(sk); |
| 2580 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2581 | if (optlen == sizeof(struct sctp_sack_info)) { |
| 2582 | if (copy_from_user(¶ms, optval, optlen)) |
| 2583 | return -EFAULT; |
| 2584 | |
| 2585 | if (params.sack_delay == 0 && params.sack_freq == 0) |
| 2586 | return 0; |
| 2587 | } else if (optlen == sizeof(struct sctp_assoc_value)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 2588 | pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n"); |
| 2589 | pr_warn("Use struct sctp_sack_info instead\n"); |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2590 | if (copy_from_user(¶ms, optval, optlen)) |
| 2591 | return -EFAULT; |
| 2592 | |
| 2593 | if (params.sack_delay == 0) |
| 2594 | params.sack_freq = 1; |
| 2595 | else |
| 2596 | params.sack_freq = 0; |
| 2597 | } else |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2598 | return - EINVAL; |
| 2599 | |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2600 | /* Validate value parameter. */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2601 | if (params.sack_delay > 500) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2602 | return -EINVAL; |
| 2603 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2604 | /* Get association, if sack_assoc_id != 0 and the socket is a one |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2605 | * to many style socket, and an association was not found, then |
| 2606 | * the id was invalid. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2607 | */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2608 | asoc = sctp_id2assoc(sk, params.sack_assoc_id); |
| 2609 | if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP)) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2610 | return -EINVAL; |
| 2611 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2612 | if (params.sack_delay) { |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2613 | if (asoc) { |
| 2614 | asoc->sackdelay = |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2615 | msecs_to_jiffies(params.sack_delay); |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2616 | asoc->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2617 | (asoc->param_flags & ~SPP_SACKDELAY) | |
| 2618 | SPP_SACKDELAY_ENABLE; |
| 2619 | } else { |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2620 | sp->sackdelay = params.sack_delay; |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2621 | sp->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2622 | (sp->param_flags & ~SPP_SACKDELAY) | |
| 2623 | SPP_SACKDELAY_ENABLE; |
| 2624 | } |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2625 | } |
| 2626 | |
| 2627 | if (params.sack_freq == 1) { |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2628 | if (asoc) { |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2629 | asoc->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2630 | (asoc->param_flags & ~SPP_SACKDELAY) | |
| 2631 | SPP_SACKDELAY_DISABLE; |
| 2632 | } else { |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2633 | sp->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2634 | (sp->param_flags & ~SPP_SACKDELAY) | |
| 2635 | SPP_SACKDELAY_DISABLE; |
| 2636 | } |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2637 | } else if (params.sack_freq > 1) { |
| 2638 | if (asoc) { |
| 2639 | asoc->sackfreq = params.sack_freq; |
| 2640 | asoc->param_flags = |
| 2641 | (asoc->param_flags & ~SPP_SACKDELAY) | |
| 2642 | SPP_SACKDELAY_ENABLE; |
| 2643 | } else { |
| 2644 | sp->sackfreq = params.sack_freq; |
| 2645 | sp->param_flags = |
| 2646 | (sp->param_flags & ~SPP_SACKDELAY) | |
| 2647 | SPP_SACKDELAY_ENABLE; |
| 2648 | } |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2649 | } |
| 2650 | |
| 2651 | /* If change is for association, also apply to each transport. */ |
| 2652 | if (asoc) { |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 2653 | list_for_each_entry(trans, &asoc->peer.transport_addr_list, |
| 2654 | transports) { |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2655 | if (params.sack_delay) { |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2656 | trans->sackdelay = |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2657 | msecs_to_jiffies(params.sack_delay); |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2658 | trans->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2659 | (trans->param_flags & ~SPP_SACKDELAY) | |
| 2660 | SPP_SACKDELAY_ENABLE; |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2661 | } |
Vlad Yasevich | 7bfe8bd | 2008-06-09 15:45:05 -0700 | [diff] [blame] | 2662 | if (params.sack_freq == 1) { |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2663 | trans->param_flags = |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2664 | (trans->param_flags & ~SPP_SACKDELAY) | |
| 2665 | SPP_SACKDELAY_DISABLE; |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 2666 | } else if (params.sack_freq > 1) { |
| 2667 | trans->sackfreq = params.sack_freq; |
| 2668 | trans->param_flags = |
| 2669 | (trans->param_flags & ~SPP_SACKDELAY) | |
| 2670 | SPP_SACKDELAY_ENABLE; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2671 | } |
| 2672 | } |
| 2673 | } |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2674 | |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 2675 | return 0; |
| 2676 | } |
| 2677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2678 | /* 7.1.3 Initialization Parameters (SCTP_INITMSG) |
| 2679 | * |
| 2680 | * Applications can specify protocol parameters for the default association |
| 2681 | * initialization. The option name argument to setsockopt() and getsockopt() |
| 2682 | * is SCTP_INITMSG. |
| 2683 | * |
| 2684 | * Setting initialization parameters is effective only on an unconnected |
| 2685 | * socket (for UDP-style sockets only future associations are effected |
| 2686 | * by the change). With TCP-style sockets, this option is inherited by |
| 2687 | * sockets derived from a listener socket. |
| 2688 | */ |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2689 | static int sctp_setsockopt_initmsg(struct sock *sk, char __user *optval, unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | { |
| 2691 | struct sctp_initmsg sinit; |
| 2692 | struct sctp_sock *sp = sctp_sk(sk); |
| 2693 | |
| 2694 | if (optlen != sizeof(struct sctp_initmsg)) |
| 2695 | return -EINVAL; |
| 2696 | if (copy_from_user(&sinit, optval, optlen)) |
| 2697 | return -EFAULT; |
| 2698 | |
| 2699 | if (sinit.sinit_num_ostreams) |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2700 | sp->initmsg.sinit_num_ostreams = sinit.sinit_num_ostreams; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2701 | if (sinit.sinit_max_instreams) |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2702 | sp->initmsg.sinit_max_instreams = sinit.sinit_max_instreams; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2703 | if (sinit.sinit_max_attempts) |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2704 | sp->initmsg.sinit_max_attempts = sinit.sinit_max_attempts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2705 | if (sinit.sinit_max_init_timeo) |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2706 | sp->initmsg.sinit_max_init_timeo = sinit.sinit_max_init_timeo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | |
| 2708 | return 0; |
| 2709 | } |
| 2710 | |
| 2711 | /* |
| 2712 | * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM) |
| 2713 | * |
| 2714 | * Applications that wish to use the sendto() system call may wish to |
| 2715 | * specify a default set of parameters that would normally be supplied |
| 2716 | * through the inclusion of ancillary data. This socket option allows |
| 2717 | * such an application to set the default sctp_sndrcvinfo structure. |
| 2718 | * The application that wishes to use this socket option simply passes |
| 2719 | * in to this call the sctp_sndrcvinfo structure defined in Section |
| 2720 | * 5.2.2) The input parameters accepted by this call include |
| 2721 | * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context, |
| 2722 | * sinfo_timetolive. The user must provide the sinfo_assoc_id field in |
| 2723 | * to this call if the caller is using the UDP model. |
| 2724 | */ |
| 2725 | static int sctp_setsockopt_default_send_param(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2726 | char __user *optval, |
| 2727 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | { |
| 2729 | struct sctp_sndrcvinfo info; |
| 2730 | struct sctp_association *asoc; |
| 2731 | struct sctp_sock *sp = sctp_sk(sk); |
| 2732 | |
| 2733 | if (optlen != sizeof(struct sctp_sndrcvinfo)) |
| 2734 | return -EINVAL; |
| 2735 | if (copy_from_user(&info, optval, optlen)) |
| 2736 | return -EFAULT; |
| 2737 | |
| 2738 | asoc = sctp_id2assoc(sk, info.sinfo_assoc_id); |
| 2739 | if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP)) |
| 2740 | return -EINVAL; |
| 2741 | |
| 2742 | if (asoc) { |
| 2743 | asoc->default_stream = info.sinfo_stream; |
| 2744 | asoc->default_flags = info.sinfo_flags; |
| 2745 | asoc->default_ppid = info.sinfo_ppid; |
| 2746 | asoc->default_context = info.sinfo_context; |
| 2747 | asoc->default_timetolive = info.sinfo_timetolive; |
| 2748 | } else { |
| 2749 | sp->default_stream = info.sinfo_stream; |
| 2750 | sp->default_flags = info.sinfo_flags; |
| 2751 | sp->default_ppid = info.sinfo_ppid; |
| 2752 | sp->default_context = info.sinfo_context; |
| 2753 | sp->default_timetolive = info.sinfo_timetolive; |
| 2754 | } |
| 2755 | |
| 2756 | return 0; |
| 2757 | } |
| 2758 | |
| 2759 | /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR) |
| 2760 | * |
| 2761 | * Requests that the local SCTP stack use the enclosed peer address as |
| 2762 | * the association primary. The enclosed address must be one of the |
| 2763 | * association peer's addresses. |
| 2764 | */ |
| 2765 | static int sctp_setsockopt_primary_addr(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2766 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2767 | { |
| 2768 | struct sctp_prim prim; |
| 2769 | struct sctp_transport *trans; |
| 2770 | |
| 2771 | if (optlen != sizeof(struct sctp_prim)) |
| 2772 | return -EINVAL; |
| 2773 | |
| 2774 | if (copy_from_user(&prim, optval, sizeof(struct sctp_prim))) |
| 2775 | return -EFAULT; |
| 2776 | |
| 2777 | trans = sctp_addr_id2transport(sk, &prim.ssp_addr, prim.ssp_assoc_id); |
| 2778 | if (!trans) |
| 2779 | return -EINVAL; |
| 2780 | |
| 2781 | sctp_assoc_set_primary(trans->asoc, trans); |
| 2782 | |
| 2783 | return 0; |
| 2784 | } |
| 2785 | |
| 2786 | /* |
| 2787 | * 7.1.5 SCTP_NODELAY |
| 2788 | * |
| 2789 | * Turn on/off any Nagle-like algorithm. This means that packets are |
| 2790 | * generally sent as soon as possible and no unnecessary delays are |
| 2791 | * introduced, at the cost of more packets in the network. Expects an |
| 2792 | * integer boolean flag. |
| 2793 | */ |
| 2794 | static int sctp_setsockopt_nodelay(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2795 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | { |
| 2797 | int val; |
| 2798 | |
| 2799 | if (optlen < sizeof(int)) |
| 2800 | return -EINVAL; |
| 2801 | if (get_user(val, (int __user *)optval)) |
| 2802 | return -EFAULT; |
| 2803 | |
| 2804 | sctp_sk(sk)->nodelay = (val == 0) ? 0 : 1; |
| 2805 | return 0; |
| 2806 | } |
| 2807 | |
| 2808 | /* |
| 2809 | * |
| 2810 | * 7.1.1 SCTP_RTOINFO |
| 2811 | * |
| 2812 | * The protocol parameters used to initialize and bound retransmission |
| 2813 | * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access |
| 2814 | * and modify these parameters. |
| 2815 | * All parameters are time values, in milliseconds. A value of 0, when |
| 2816 | * modifying the parameters, indicates that the current value should not |
| 2817 | * be changed. |
| 2818 | * |
| 2819 | */ |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2820 | static int sctp_setsockopt_rtoinfo(struct sock *sk, char __user *optval, unsigned int optlen) |
| 2821 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | struct sctp_rtoinfo rtoinfo; |
| 2823 | struct sctp_association *asoc; |
| 2824 | |
| 2825 | if (optlen != sizeof (struct sctp_rtoinfo)) |
| 2826 | return -EINVAL; |
| 2827 | |
| 2828 | if (copy_from_user(&rtoinfo, optval, optlen)) |
| 2829 | return -EFAULT; |
| 2830 | |
| 2831 | asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id); |
| 2832 | |
| 2833 | /* Set the values to the specific association */ |
| 2834 | if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP)) |
| 2835 | return -EINVAL; |
| 2836 | |
| 2837 | if (asoc) { |
| 2838 | if (rtoinfo.srto_initial != 0) |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 2839 | asoc->rto_initial = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | msecs_to_jiffies(rtoinfo.srto_initial); |
| 2841 | if (rtoinfo.srto_max != 0) |
| 2842 | asoc->rto_max = msecs_to_jiffies(rtoinfo.srto_max); |
| 2843 | if (rtoinfo.srto_min != 0) |
| 2844 | asoc->rto_min = msecs_to_jiffies(rtoinfo.srto_min); |
| 2845 | } else { |
| 2846 | /* If there is no association or the association-id = 0 |
| 2847 | * set the values to the endpoint. |
| 2848 | */ |
| 2849 | struct sctp_sock *sp = sctp_sk(sk); |
| 2850 | |
| 2851 | if (rtoinfo.srto_initial != 0) |
| 2852 | sp->rtoinfo.srto_initial = rtoinfo.srto_initial; |
| 2853 | if (rtoinfo.srto_max != 0) |
| 2854 | sp->rtoinfo.srto_max = rtoinfo.srto_max; |
| 2855 | if (rtoinfo.srto_min != 0) |
| 2856 | sp->rtoinfo.srto_min = rtoinfo.srto_min; |
| 2857 | } |
| 2858 | |
| 2859 | return 0; |
| 2860 | } |
| 2861 | |
| 2862 | /* |
| 2863 | * |
| 2864 | * 7.1.2 SCTP_ASSOCINFO |
| 2865 | * |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 2866 | * This option is used to tune the maximum retransmission attempts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | * of the association. |
| 2868 | * Returns an error if the new association retransmission value is |
| 2869 | * greater than the sum of the retransmission value of the peer. |
| 2870 | * See [SCTP] for more information. |
| 2871 | * |
| 2872 | */ |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2873 | static int sctp_setsockopt_associnfo(struct sock *sk, char __user *optval, unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2874 | { |
| 2875 | |
| 2876 | struct sctp_assocparams assocparams; |
| 2877 | struct sctp_association *asoc; |
| 2878 | |
| 2879 | if (optlen != sizeof(struct sctp_assocparams)) |
| 2880 | return -EINVAL; |
| 2881 | if (copy_from_user(&assocparams, optval, optlen)) |
| 2882 | return -EFAULT; |
| 2883 | |
| 2884 | asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id); |
| 2885 | |
| 2886 | if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP)) |
| 2887 | return -EINVAL; |
| 2888 | |
| 2889 | /* Set the values to the specific association */ |
| 2890 | if (asoc) { |
Vlad Yasevich | 402d68c | 2006-06-17 22:54:51 -0700 | [diff] [blame] | 2891 | if (assocparams.sasoc_asocmaxrxt != 0) { |
| 2892 | __u32 path_sum = 0; |
| 2893 | int paths = 0; |
Vlad Yasevich | 402d68c | 2006-06-17 22:54:51 -0700 | [diff] [blame] | 2894 | struct sctp_transport *peer_addr; |
| 2895 | |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 2896 | list_for_each_entry(peer_addr, &asoc->peer.transport_addr_list, |
| 2897 | transports) { |
Vlad Yasevich | 402d68c | 2006-06-17 22:54:51 -0700 | [diff] [blame] | 2898 | path_sum += peer_addr->pathmaxrxt; |
| 2899 | paths++; |
| 2900 | } |
| 2901 | |
Frederik Schwarzer | 025dfda | 2008-10-16 19:02:37 +0200 | [diff] [blame] | 2902 | /* Only validate asocmaxrxt if we have more than |
Vlad Yasevich | 402d68c | 2006-06-17 22:54:51 -0700 | [diff] [blame] | 2903 | * one path/transport. We do this because path |
| 2904 | * retransmissions are only counted when we have more |
| 2905 | * then one path. |
| 2906 | */ |
| 2907 | if (paths > 1 && |
| 2908 | assocparams.sasoc_asocmaxrxt > path_sum) |
| 2909 | return -EINVAL; |
| 2910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | asoc->max_retrans = assocparams.sasoc_asocmaxrxt; |
Vlad Yasevich | 402d68c | 2006-06-17 22:54:51 -0700 | [diff] [blame] | 2912 | } |
| 2913 | |
Daniel Borkmann | 52db882 | 2013-06-25 18:17:27 +0200 | [diff] [blame] | 2914 | if (assocparams.sasoc_cookie_life != 0) |
| 2915 | asoc->cookie_life = ms_to_ktime(assocparams.sasoc_cookie_life); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | } else { |
| 2917 | /* Set the values to the endpoint */ |
| 2918 | struct sctp_sock *sp = sctp_sk(sk); |
| 2919 | |
| 2920 | if (assocparams.sasoc_asocmaxrxt != 0) |
| 2921 | sp->assocparams.sasoc_asocmaxrxt = |
| 2922 | assocparams.sasoc_asocmaxrxt; |
| 2923 | if (assocparams.sasoc_cookie_life != 0) |
| 2924 | sp->assocparams.sasoc_cookie_life = |
| 2925 | assocparams.sasoc_cookie_life; |
| 2926 | } |
| 2927 | return 0; |
| 2928 | } |
| 2929 | |
| 2930 | /* |
| 2931 | * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR) |
| 2932 | * |
| 2933 | * This socket option is a boolean flag which turns on or off mapped V4 |
| 2934 | * addresses. If this option is turned on and the socket is type |
| 2935 | * PF_INET6, then IPv4 addresses will be mapped to V6 representation. |
| 2936 | * If this option is turned off, then no mapping will be done of V4 |
| 2937 | * addresses and a user will receive both PF_INET6 and PF_INET type |
| 2938 | * addresses on the socket. |
| 2939 | */ |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2940 | static int sctp_setsockopt_mappedv4(struct sock *sk, char __user *optval, unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | { |
| 2942 | int val; |
| 2943 | struct sctp_sock *sp = sctp_sk(sk); |
| 2944 | |
| 2945 | if (optlen < sizeof(int)) |
| 2946 | return -EINVAL; |
| 2947 | if (get_user(val, (int __user *)optval)) |
| 2948 | return -EFAULT; |
| 2949 | if (val) |
| 2950 | sp->v4mapped = 1; |
| 2951 | else |
| 2952 | sp->v4mapped = 0; |
| 2953 | |
| 2954 | return 0; |
| 2955 | } |
| 2956 | |
| 2957 | /* |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 2958 | * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG) |
| 2959 | * This option will get or set the maximum size to put in any outgoing |
| 2960 | * SCTP DATA chunk. If a message is larger than this size it will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | * fragmented by SCTP into the specified size. Note that the underlying |
| 2962 | * SCTP implementation may fragment into smaller sized chunks when the |
| 2963 | * PMTU of the underlying association is smaller than the value set by |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 2964 | * the user. The default value for this option is '0' which indicates |
| 2965 | * the user is NOT limiting fragmentation and only the PMTU will effect |
| 2966 | * SCTP's choice of DATA chunk size. Note also that values set larger |
| 2967 | * than the maximum size of an IP datagram will effectively let SCTP |
| 2968 | * control fragmentation (i.e. the same as setting this option to 0). |
| 2969 | * |
| 2970 | * The following structure is used to access and modify this parameter: |
| 2971 | * |
| 2972 | * struct sctp_assoc_value { |
| 2973 | * sctp_assoc_t assoc_id; |
| 2974 | * uint32_t assoc_value; |
| 2975 | * }; |
| 2976 | * |
| 2977 | * assoc_id: This parameter is ignored for one-to-one style sockets. |
| 2978 | * For one-to-many style sockets this parameter indicates which |
| 2979 | * association the user is performing an action upon. Note that if |
| 2980 | * this field's value is zero then the endpoints default value is |
| 2981 | * changed (effecting future associations only). |
| 2982 | * assoc_value: This parameter specifies the maximum size in bytes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | */ |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 2984 | static int sctp_setsockopt_maxseg(struct sock *sk, char __user *optval, unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | { |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 2986 | struct sctp_assoc_value params; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | struct sctp_association *asoc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | struct sctp_sock *sp = sctp_sk(sk); |
| 2989 | int val; |
| 2990 | |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 2991 | if (optlen == sizeof(int)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 2992 | pr_warn("Use of int in maxseg socket option deprecated\n"); |
| 2993 | pr_warn("Use struct sctp_assoc_value instead\n"); |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 2994 | if (copy_from_user(&val, optval, optlen)) |
| 2995 | return -EFAULT; |
| 2996 | params.assoc_id = 0; |
| 2997 | } else if (optlen == sizeof(struct sctp_assoc_value)) { |
| 2998 | if (copy_from_user(¶ms, optval, optlen)) |
| 2999 | return -EFAULT; |
| 3000 | val = params.assoc_value; |
| 3001 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | return -EINVAL; |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 3003 | |
Ivan Skytte Jorgensen | 96a3399 | 2005-10-28 15:36:12 -0700 | [diff] [blame] | 3004 | if ((val != 0) && ((val < 8) || (val > SCTP_MAX_CHUNK_LEN))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 3007 | asoc = sctp_id2assoc(sk, params.assoc_id); |
| 3008 | if (!asoc && params.assoc_id && sctp_style(sk, UDP)) |
| 3009 | return -EINVAL; |
| 3010 | |
| 3011 | if (asoc) { |
| 3012 | if (val == 0) { |
| 3013 | val = asoc->pathmtu; |
| 3014 | val -= sp->pf->af->net_header_len; |
| 3015 | val -= sizeof(struct sctphdr) + |
| 3016 | sizeof(struct sctp_data_chunk); |
| 3017 | } |
Vlad Yasevich | f68b2e0 | 2009-09-04 18:21:00 -0400 | [diff] [blame] | 3018 | asoc->user_frag = val; |
| 3019 | asoc->frag_point = sctp_frag_point(asoc, asoc->pathmtu); |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 3020 | } else { |
| 3021 | sp->user_frag = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3022 | } |
| 3023 | |
| 3024 | return 0; |
| 3025 | } |
| 3026 | |
| 3027 | |
| 3028 | /* |
| 3029 | * 7.1.9 Set Peer Primary Address (SCTP_SET_PEER_PRIMARY_ADDR) |
| 3030 | * |
| 3031 | * Requests that the peer mark the enclosed address as the association |
| 3032 | * primary. The enclosed address must be one of the association's |
| 3033 | * locally bound addresses. The following structure is used to make a |
| 3034 | * set primary request: |
| 3035 | */ |
| 3036 | static int sctp_setsockopt_peer_primary_addr(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3037 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3039 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | struct sctp_sock *sp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | struct sctp_association *asoc = NULL; |
| 3042 | struct sctp_setpeerprim prim; |
| 3043 | struct sctp_chunk *chunk; |
Wei Yongjun | 40a0103 | 2010-12-07 17:11:09 +0000 | [diff] [blame] | 3044 | struct sctp_af *af; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | int err; |
| 3046 | |
| 3047 | sp = sctp_sk(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3049 | if (!net->sctp.addip_enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | return -EPERM; |
| 3051 | |
| 3052 | if (optlen != sizeof(struct sctp_setpeerprim)) |
| 3053 | return -EINVAL; |
| 3054 | |
| 3055 | if (copy_from_user(&prim, optval, optlen)) |
| 3056 | return -EFAULT; |
| 3057 | |
| 3058 | asoc = sctp_id2assoc(sk, prim.sspp_assoc_id); |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 3059 | if (!asoc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3060 | return -EINVAL; |
| 3061 | |
| 3062 | if (!asoc->peer.asconf_capable) |
| 3063 | return -EPERM; |
| 3064 | |
| 3065 | if (asoc->peer.addip_disabled_mask & SCTP_PARAM_SET_PRIMARY) |
| 3066 | return -EPERM; |
| 3067 | |
| 3068 | if (!sctp_state(asoc, ESTABLISHED)) |
| 3069 | return -ENOTCONN; |
| 3070 | |
Wei Yongjun | 40a0103 | 2010-12-07 17:11:09 +0000 | [diff] [blame] | 3071 | af = sctp_get_af_specific(prim.sspp_addr.ss_family); |
| 3072 | if (!af) |
| 3073 | return -EINVAL; |
| 3074 | |
| 3075 | if (!af->addr_valid((union sctp_addr *)&prim.sspp_addr, sp, NULL)) |
| 3076 | return -EADDRNOTAVAIL; |
| 3077 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | if (!sctp_assoc_lookup_laddr(asoc, (union sctp_addr *)&prim.sspp_addr)) |
| 3079 | return -EADDRNOTAVAIL; |
| 3080 | |
| 3081 | /* Create an ASCONF chunk with SET_PRIMARY parameter */ |
| 3082 | chunk = sctp_make_asconf_set_prim(asoc, |
| 3083 | (union sctp_addr *)&prim.sspp_addr); |
| 3084 | if (!chunk) |
| 3085 | return -ENOMEM; |
| 3086 | |
| 3087 | err = sctp_send_asconf(asoc, chunk); |
| 3088 | |
| 3089 | SCTP_DEBUG_PRINTK("We set peer primary addr primitively.\n"); |
| 3090 | |
| 3091 | return err; |
| 3092 | } |
| 3093 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3094 | static int sctp_setsockopt_adaptation_layer(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3095 | unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | { |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3097 | struct sctp_setadaptation adaptation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3099 | if (optlen != sizeof(struct sctp_setadaptation)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | return -EINVAL; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3101 | if (copy_from_user(&adaptation, optval, optlen)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3102 | return -EFAULT; |
| 3103 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3104 | sctp_sk(sk)->adaptation_ind = adaptation.ssb_adaptation_ind; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | |
| 3106 | return 0; |
| 3107 | } |
| 3108 | |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 3109 | /* |
| 3110 | * 7.1.29. Set or Get the default context (SCTP_CONTEXT) |
| 3111 | * |
| 3112 | * The context field in the sctp_sndrcvinfo structure is normally only |
| 3113 | * used when a failed message is retrieved holding the value that was |
| 3114 | * sent down on the actual send call. This option allows the setting of |
| 3115 | * a default context on an association basis that will be received on |
| 3116 | * reading messages from the peer. This is especially helpful in the |
| 3117 | * one-2-many model for an application to keep some reference to an |
| 3118 | * internal state machine that is processing messages on the |
| 3119 | * association. Note that the setting of this value only effects |
| 3120 | * received messages from the peer and does not effect the value that is |
| 3121 | * saved with outbound messages. |
| 3122 | */ |
| 3123 | static int sctp_setsockopt_context(struct sock *sk, char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3124 | unsigned int optlen) |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 3125 | { |
| 3126 | struct sctp_assoc_value params; |
| 3127 | struct sctp_sock *sp; |
| 3128 | struct sctp_association *asoc; |
| 3129 | |
| 3130 | if (optlen != sizeof(struct sctp_assoc_value)) |
| 3131 | return -EINVAL; |
| 3132 | if (copy_from_user(¶ms, optval, optlen)) |
| 3133 | return -EFAULT; |
| 3134 | |
| 3135 | sp = sctp_sk(sk); |
| 3136 | |
| 3137 | if (params.assoc_id != 0) { |
| 3138 | asoc = sctp_id2assoc(sk, params.assoc_id); |
| 3139 | if (!asoc) |
| 3140 | return -EINVAL; |
| 3141 | asoc->default_rcv_context = params.assoc_value; |
| 3142 | } else { |
| 3143 | sp->default_rcv_context = params.assoc_value; |
| 3144 | } |
| 3145 | |
| 3146 | return 0; |
| 3147 | } |
| 3148 | |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 3149 | /* |
| 3150 | * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE) |
| 3151 | * |
| 3152 | * This options will at a minimum specify if the implementation is doing |
| 3153 | * fragmented interleave. Fragmented interleave, for a one to many |
| 3154 | * socket, is when subsequent calls to receive a message may return |
| 3155 | * parts of messages from different associations. Some implementations |
| 3156 | * may allow you to turn this value on or off. If so, when turned off, |
| 3157 | * no fragment interleave will occur (which will cause a head of line |
| 3158 | * blocking amongst multiple associations sharing the same one to many |
| 3159 | * socket). When this option is turned on, then each receive call may |
| 3160 | * come from a different association (thus the user must receive data |
| 3161 | * with the extended calls (e.g. sctp_recvmsg) to keep track of which |
| 3162 | * association each receive belongs to. |
| 3163 | * |
| 3164 | * This option takes a boolean value. A non-zero value indicates that |
| 3165 | * fragmented interleave is on. A value of zero indicates that |
| 3166 | * fragmented interleave is off. |
| 3167 | * |
| 3168 | * Note that it is important that an implementation that allows this |
| 3169 | * option to be turned on, have it off by default. Otherwise an unaware |
| 3170 | * application using the one to many model may become confused and act |
| 3171 | * incorrectly. |
| 3172 | */ |
| 3173 | static int sctp_setsockopt_fragment_interleave(struct sock *sk, |
| 3174 | char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3175 | unsigned int optlen) |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 3176 | { |
| 3177 | int val; |
| 3178 | |
| 3179 | if (optlen != sizeof(int)) |
| 3180 | return -EINVAL; |
| 3181 | if (get_user(val, (int __user *)optval)) |
| 3182 | return -EFAULT; |
| 3183 | |
| 3184 | sctp_sk(sk)->frag_interleave = (val == 0) ? 0 : 1; |
| 3185 | |
| 3186 | return 0; |
| 3187 | } |
| 3188 | |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3189 | /* |
Wei Yongjun | 8510b93 | 2008-12-25 16:59:03 -0800 | [diff] [blame] | 3190 | * 8.1.21. Set or Get the SCTP Partial Delivery Point |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3191 | * (SCTP_PARTIAL_DELIVERY_POINT) |
Wei Yongjun | 8510b93 | 2008-12-25 16:59:03 -0800 | [diff] [blame] | 3192 | * |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3193 | * This option will set or get the SCTP partial delivery point. This |
| 3194 | * point is the size of a message where the partial delivery API will be |
| 3195 | * invoked to help free up rwnd space for the peer. Setting this to a |
Wei Yongjun | 8510b93 | 2008-12-25 16:59:03 -0800 | [diff] [blame] | 3196 | * lower value will cause partial deliveries to happen more often. The |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3197 | * calls argument is an integer that sets or gets the partial delivery |
Wei Yongjun | 8510b93 | 2008-12-25 16:59:03 -0800 | [diff] [blame] | 3198 | * point. Note also that the call will fail if the user attempts to set |
| 3199 | * this value larger than the socket receive buffer size. |
| 3200 | * |
| 3201 | * Note that any single message having a length smaller than or equal to |
| 3202 | * the SCTP partial delivery point will be delivered in one single read |
| 3203 | * call as long as the user provided buffer is large enough to hold the |
| 3204 | * message. |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3205 | */ |
| 3206 | static int sctp_setsockopt_partial_delivery_point(struct sock *sk, |
| 3207 | char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3208 | unsigned int optlen) |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3209 | { |
| 3210 | u32 val; |
| 3211 | |
| 3212 | if (optlen != sizeof(u32)) |
| 3213 | return -EINVAL; |
| 3214 | if (get_user(val, (int __user *)optval)) |
| 3215 | return -EFAULT; |
| 3216 | |
Wei Yongjun | 8510b93 | 2008-12-25 16:59:03 -0800 | [diff] [blame] | 3217 | /* Note: We double the receive buffer from what the user sets |
| 3218 | * it to be, also initial rwnd is based on rcvbuf/2. |
| 3219 | */ |
| 3220 | if (val > (sk->sk_rcvbuf >> 1)) |
| 3221 | return -EINVAL; |
| 3222 | |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3223 | sctp_sk(sk)->pd_point = val; |
| 3224 | |
| 3225 | return 0; /* is this the right error code? */ |
| 3226 | } |
| 3227 | |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3228 | /* |
| 3229 | * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST) |
| 3230 | * |
| 3231 | * This option will allow a user to change the maximum burst of packets |
| 3232 | * that can be emitted by this association. Note that the default value |
| 3233 | * is 4, and some implementations may restrict this setting so that it |
| 3234 | * can only be lowered. |
| 3235 | * |
| 3236 | * NOTE: This text doesn't seem right. Do this on a socket basis with |
| 3237 | * future associations inheriting the socket value. |
| 3238 | */ |
| 3239 | static int sctp_setsockopt_maxburst(struct sock *sk, |
| 3240 | char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3241 | unsigned int optlen) |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3242 | { |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 3243 | struct sctp_assoc_value params; |
| 3244 | struct sctp_sock *sp; |
| 3245 | struct sctp_association *asoc; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3246 | int val; |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 3247 | int assoc_id = 0; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3248 | |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 3249 | if (optlen == sizeof(int)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 3250 | pr_warn("Use of int in max_burst socket option deprecated\n"); |
| 3251 | pr_warn("Use struct sctp_assoc_value instead\n"); |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 3252 | if (copy_from_user(&val, optval, optlen)) |
| 3253 | return -EFAULT; |
| 3254 | } else if (optlen == sizeof(struct sctp_assoc_value)) { |
| 3255 | if (copy_from_user(¶ms, optval, optlen)) |
| 3256 | return -EFAULT; |
| 3257 | val = params.assoc_value; |
| 3258 | assoc_id = params.assoc_id; |
| 3259 | } else |
| 3260 | return -EINVAL; |
| 3261 | |
| 3262 | sp = sctp_sk(sk); |
| 3263 | |
| 3264 | if (assoc_id != 0) { |
| 3265 | asoc = sctp_id2assoc(sk, assoc_id); |
| 3266 | if (!asoc) |
| 3267 | return -EINVAL; |
| 3268 | asoc->max_burst = val; |
| 3269 | } else |
| 3270 | sp->max_burst = val; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3271 | |
| 3272 | return 0; |
| 3273 | } |
| 3274 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3275 | /* |
| 3276 | * 7.1.18. Add a chunk that must be authenticated (SCTP_AUTH_CHUNK) |
| 3277 | * |
| 3278 | * This set option adds a chunk type that the user is requesting to be |
| 3279 | * received only in an authenticated way. Changes to the list of chunks |
| 3280 | * will only effect future associations on the socket. |
| 3281 | */ |
| 3282 | static int sctp_setsockopt_auth_chunk(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3283 | char __user *optval, |
| 3284 | unsigned int optlen) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3285 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3286 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3287 | struct sctp_authchunk val; |
| 3288 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3289 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 3290 | return -EACCES; |
| 3291 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3292 | if (optlen != sizeof(struct sctp_authchunk)) |
| 3293 | return -EINVAL; |
| 3294 | if (copy_from_user(&val, optval, optlen)) |
| 3295 | return -EFAULT; |
| 3296 | |
| 3297 | switch (val.sauth_chunk) { |
Joe Perches | 7fd71b1 | 2011-07-01 09:43:11 +0000 | [diff] [blame] | 3298 | case SCTP_CID_INIT: |
| 3299 | case SCTP_CID_INIT_ACK: |
| 3300 | case SCTP_CID_SHUTDOWN_COMPLETE: |
| 3301 | case SCTP_CID_AUTH: |
| 3302 | return -EINVAL; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3303 | } |
| 3304 | |
| 3305 | /* add this chunk id to the endpoint */ |
| 3306 | return sctp_auth_ep_add_chunkid(sctp_sk(sk)->ep, val.sauth_chunk); |
| 3307 | } |
| 3308 | |
| 3309 | /* |
| 3310 | * 7.1.19. Get or set the list of supported HMAC Identifiers (SCTP_HMAC_IDENT) |
| 3311 | * |
| 3312 | * This option gets or sets the list of HMAC algorithms that the local |
| 3313 | * endpoint requires the peer to use. |
| 3314 | */ |
| 3315 | static int sctp_setsockopt_hmac_ident(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3316 | char __user *optval, |
| 3317 | unsigned int optlen) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3318 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3319 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3320 | struct sctp_hmacalgo *hmacs; |
Vlad Yasevich | d972405 | 2008-08-27 16:09:49 -0700 | [diff] [blame] | 3321 | u32 idents; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3322 | int err; |
| 3323 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3324 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 3325 | return -EACCES; |
| 3326 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3327 | if (optlen < sizeof(struct sctp_hmacalgo)) |
| 3328 | return -EINVAL; |
| 3329 | |
Shan Wei | 934253a | 2011-04-18 19:13:18 +0000 | [diff] [blame] | 3330 | hmacs= memdup_user(optval, optlen); |
| 3331 | if (IS_ERR(hmacs)) |
| 3332 | return PTR_ERR(hmacs); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3333 | |
Vlad Yasevich | d972405 | 2008-08-27 16:09:49 -0700 | [diff] [blame] | 3334 | idents = hmacs->shmac_num_idents; |
| 3335 | if (idents == 0 || idents > SCTP_AUTH_NUM_HMACS || |
| 3336 | (idents * sizeof(u16)) > (optlen - sizeof(struct sctp_hmacalgo))) { |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3337 | err = -EINVAL; |
| 3338 | goto out; |
| 3339 | } |
| 3340 | |
| 3341 | err = sctp_auth_ep_set_hmacs(sctp_sk(sk)->ep, hmacs); |
| 3342 | out: |
| 3343 | kfree(hmacs); |
| 3344 | return err; |
| 3345 | } |
| 3346 | |
| 3347 | /* |
| 3348 | * 7.1.20. Set a shared key (SCTP_AUTH_KEY) |
| 3349 | * |
| 3350 | * This option will set a shared secret key which is used to build an |
| 3351 | * association shared key. |
| 3352 | */ |
| 3353 | static int sctp_setsockopt_auth_key(struct sock *sk, |
| 3354 | char __user *optval, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3355 | unsigned int optlen) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3356 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3357 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3358 | struct sctp_authkey *authkey; |
| 3359 | struct sctp_association *asoc; |
| 3360 | int ret; |
| 3361 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3362 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 3363 | return -EACCES; |
| 3364 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3365 | if (optlen <= sizeof(struct sctp_authkey)) |
| 3366 | return -EINVAL; |
| 3367 | |
Shan Wei | 934253a | 2011-04-18 19:13:18 +0000 | [diff] [blame] | 3368 | authkey= memdup_user(optval, optlen); |
| 3369 | if (IS_ERR(authkey)) |
| 3370 | return PTR_ERR(authkey); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3371 | |
Vlad Yasevich | 328fc47 | 2008-08-27 16:08:54 -0700 | [diff] [blame] | 3372 | if (authkey->sca_keylength > optlen - sizeof(struct sctp_authkey)) { |
Vlad Yasevich | 30c2235 | 2008-08-25 15:16:19 -0700 | [diff] [blame] | 3373 | ret = -EINVAL; |
| 3374 | goto out; |
| 3375 | } |
| 3376 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3377 | asoc = sctp_id2assoc(sk, authkey->sca_assoc_id); |
| 3378 | if (!asoc && authkey->sca_assoc_id && sctp_style(sk, UDP)) { |
| 3379 | ret = -EINVAL; |
| 3380 | goto out; |
| 3381 | } |
| 3382 | |
| 3383 | ret = sctp_auth_set_key(sctp_sk(sk)->ep, asoc, authkey); |
| 3384 | out: |
Daniel Borkmann | 6ba542a | 2013-02-08 03:04:34 +0000 | [diff] [blame] | 3385 | kzfree(authkey); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3386 | return ret; |
| 3387 | } |
| 3388 | |
| 3389 | /* |
| 3390 | * 7.1.21. Get or set the active shared key (SCTP_AUTH_ACTIVE_KEY) |
| 3391 | * |
| 3392 | * This option will get or set the active shared key to be used to build |
| 3393 | * the association shared key. |
| 3394 | */ |
| 3395 | static int sctp_setsockopt_active_key(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3396 | char __user *optval, |
| 3397 | unsigned int optlen) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3398 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3399 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3400 | struct sctp_authkeyid val; |
| 3401 | struct sctp_association *asoc; |
| 3402 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3403 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 3404 | return -EACCES; |
| 3405 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3406 | if (optlen != sizeof(struct sctp_authkeyid)) |
| 3407 | return -EINVAL; |
| 3408 | if (copy_from_user(&val, optval, optlen)) |
| 3409 | return -EFAULT; |
| 3410 | |
| 3411 | asoc = sctp_id2assoc(sk, val.scact_assoc_id); |
| 3412 | if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP)) |
| 3413 | return -EINVAL; |
| 3414 | |
| 3415 | return sctp_auth_set_active_key(sctp_sk(sk)->ep, asoc, |
| 3416 | val.scact_keynumber); |
| 3417 | } |
| 3418 | |
| 3419 | /* |
| 3420 | * 7.1.22. Delete a shared key (SCTP_AUTH_DELETE_KEY) |
| 3421 | * |
| 3422 | * This set option will delete a shared secret key from use. |
| 3423 | */ |
| 3424 | static int sctp_setsockopt_del_key(struct sock *sk, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 3425 | char __user *optval, |
| 3426 | unsigned int optlen) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3427 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3428 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3429 | struct sctp_authkeyid val; |
| 3430 | struct sctp_association *asoc; |
| 3431 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3432 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 3433 | return -EACCES; |
| 3434 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3435 | if (optlen != sizeof(struct sctp_authkeyid)) |
| 3436 | return -EINVAL; |
| 3437 | if (copy_from_user(&val, optval, optlen)) |
| 3438 | return -EFAULT; |
| 3439 | |
| 3440 | asoc = sctp_id2assoc(sk, val.scact_assoc_id); |
| 3441 | if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP)) |
| 3442 | return -EINVAL; |
| 3443 | |
| 3444 | return sctp_auth_del_key_id(sctp_sk(sk)->ep, asoc, |
| 3445 | val.scact_keynumber); |
| 3446 | |
| 3447 | } |
| 3448 | |
Michio Honda | 7dc04d7 | 2011-04-26 20:16:31 +0900 | [diff] [blame] | 3449 | /* |
| 3450 | * 8.1.23 SCTP_AUTO_ASCONF |
| 3451 | * |
| 3452 | * This option will enable or disable the use of the automatic generation of |
| 3453 | * ASCONF chunks to add and delete addresses to an existing association. Note |
| 3454 | * that this option has two caveats namely: a) it only affects sockets that |
| 3455 | * are bound to all addresses available to the SCTP stack, and b) the system |
| 3456 | * administrator may have an overriding control that turns the ASCONF feature |
| 3457 | * off no matter what setting the socket option may have. |
| 3458 | * This option expects an integer boolean flag, where a non-zero value turns on |
| 3459 | * the option, and a zero value turns off the option. |
| 3460 | * Note. In this implementation, socket operation overrides default parameter |
| 3461 | * being set by sysctl as well as FreeBSD implementation |
| 3462 | */ |
| 3463 | static int sctp_setsockopt_auto_asconf(struct sock *sk, char __user *optval, |
| 3464 | unsigned int optlen) |
| 3465 | { |
| 3466 | int val; |
| 3467 | struct sctp_sock *sp = sctp_sk(sk); |
| 3468 | |
| 3469 | if (optlen < sizeof(int)) |
| 3470 | return -EINVAL; |
| 3471 | if (get_user(val, (int __user *)optval)) |
| 3472 | return -EFAULT; |
| 3473 | if (!sctp_is_ep_boundall(sk) && val) |
| 3474 | return -EINVAL; |
| 3475 | if ((val && sp->do_auto_asconf) || (!val && !sp->do_auto_asconf)) |
| 3476 | return 0; |
| 3477 | |
| 3478 | if (val == 0 && sp->do_auto_asconf) { |
| 3479 | list_del(&sp->auto_asconf_list); |
| 3480 | sp->do_auto_asconf = 0; |
| 3481 | } else if (val && !sp->do_auto_asconf) { |
| 3482 | list_add_tail(&sp->auto_asconf_list, |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 3483 | &sock_net(sk)->sctp.auto_asconf_splist); |
Michio Honda | 7dc04d7 | 2011-04-26 20:16:31 +0900 | [diff] [blame] | 3484 | sp->do_auto_asconf = 1; |
| 3485 | } |
| 3486 | return 0; |
| 3487 | } |
| 3488 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3489 | |
Neil Horman | 5aa93bc | 2012-07-21 07:56:07 +0000 | [diff] [blame] | 3490 | /* |
| 3491 | * SCTP_PEER_ADDR_THLDS |
| 3492 | * |
| 3493 | * This option allows us to alter the partially failed threshold for one or all |
| 3494 | * transports in an association. See Section 6.1 of: |
| 3495 | * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt |
| 3496 | */ |
| 3497 | static int sctp_setsockopt_paddr_thresholds(struct sock *sk, |
| 3498 | char __user *optval, |
| 3499 | unsigned int optlen) |
| 3500 | { |
| 3501 | struct sctp_paddrthlds val; |
| 3502 | struct sctp_transport *trans; |
| 3503 | struct sctp_association *asoc; |
| 3504 | |
| 3505 | if (optlen < sizeof(struct sctp_paddrthlds)) |
| 3506 | return -EINVAL; |
| 3507 | if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, |
| 3508 | sizeof(struct sctp_paddrthlds))) |
| 3509 | return -EFAULT; |
| 3510 | |
| 3511 | |
| 3512 | if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) { |
| 3513 | asoc = sctp_id2assoc(sk, val.spt_assoc_id); |
| 3514 | if (!asoc) |
| 3515 | return -ENOENT; |
| 3516 | list_for_each_entry(trans, &asoc->peer.transport_addr_list, |
| 3517 | transports) { |
| 3518 | if (val.spt_pathmaxrxt) |
| 3519 | trans->pathmaxrxt = val.spt_pathmaxrxt; |
| 3520 | trans->pf_retrans = val.spt_pathpfthld; |
| 3521 | } |
| 3522 | |
| 3523 | if (val.spt_pathmaxrxt) |
| 3524 | asoc->pathmaxrxt = val.spt_pathmaxrxt; |
| 3525 | asoc->pf_retrans = val.spt_pathpfthld; |
| 3526 | } else { |
| 3527 | trans = sctp_addr_id2transport(sk, &val.spt_address, |
| 3528 | val.spt_assoc_id); |
| 3529 | if (!trans) |
| 3530 | return -ENOENT; |
| 3531 | |
| 3532 | if (val.spt_pathmaxrxt) |
| 3533 | trans->pathmaxrxt = val.spt_pathmaxrxt; |
| 3534 | trans->pf_retrans = val.spt_pathpfthld; |
| 3535 | } |
| 3536 | |
| 3537 | return 0; |
| 3538 | } |
| 3539 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3540 | /* API 6.2 setsockopt(), getsockopt() |
| 3541 | * |
| 3542 | * Applications use setsockopt() and getsockopt() to set or retrieve |
| 3543 | * socket options. Socket options are used to change the default |
| 3544 | * behavior of sockets calls. They are described in Section 7. |
| 3545 | * |
| 3546 | * The syntax is: |
| 3547 | * |
| 3548 | * ret = getsockopt(int sd, int level, int optname, void __user *optval, |
| 3549 | * int __user *optlen); |
| 3550 | * ret = setsockopt(int sd, int level, int optname, const void __user *optval, |
| 3551 | * int optlen); |
| 3552 | * |
| 3553 | * sd - the socket descript. |
| 3554 | * level - set to IPPROTO_SCTP for all SCTP options. |
| 3555 | * optname - the option name. |
| 3556 | * optval - the buffer to store the value of the option. |
| 3557 | * optlen - the size of the buffer. |
| 3558 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3559 | static int sctp_setsockopt(struct sock *sk, int level, int optname, |
| 3560 | char __user *optval, unsigned int optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3561 | { |
| 3562 | int retval = 0; |
| 3563 | |
| 3564 | SCTP_DEBUG_PRINTK("sctp_setsockopt(sk: %p... optname: %d)\n", |
| 3565 | sk, optname); |
| 3566 | |
| 3567 | /* I can hardly begin to describe how wrong this is. This is |
| 3568 | * so broken as to be worse than useless. The API draft |
| 3569 | * REALLY is NOT helpful here... I am not convinced that the |
| 3570 | * semantics of setsockopt() with a level OTHER THAN SOL_SCTP |
| 3571 | * are at all well-founded. |
| 3572 | */ |
| 3573 | if (level != SOL_SCTP) { |
| 3574 | struct sctp_af *af = sctp_sk(sk)->pf->af; |
| 3575 | retval = af->setsockopt(sk, level, optname, optval, optlen); |
| 3576 | goto out_nounlock; |
| 3577 | } |
| 3578 | |
| 3579 | sctp_lock_sock(sk); |
| 3580 | |
| 3581 | switch (optname) { |
| 3582 | case SCTP_SOCKOPT_BINDX_ADD: |
| 3583 | /* 'optlen' is the size of the addresses buffer. */ |
| 3584 | retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval, |
| 3585 | optlen, SCTP_BINDX_ADD_ADDR); |
| 3586 | break; |
| 3587 | |
| 3588 | case SCTP_SOCKOPT_BINDX_REM: |
| 3589 | /* 'optlen' is the size of the addresses buffer. */ |
| 3590 | retval = sctp_setsockopt_bindx(sk, (struct sockaddr __user *)optval, |
| 3591 | optlen, SCTP_BINDX_REM_ADDR); |
| 3592 | break; |
| 3593 | |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 3594 | case SCTP_SOCKOPT_CONNECTX_OLD: |
| 3595 | /* 'optlen' is the size of the addresses buffer. */ |
| 3596 | retval = sctp_setsockopt_connectx_old(sk, |
| 3597 | (struct sockaddr __user *)optval, |
| 3598 | optlen); |
| 3599 | break; |
| 3600 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 3601 | case SCTP_SOCKOPT_CONNECTX: |
| 3602 | /* 'optlen' is the size of the addresses buffer. */ |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 3603 | retval = sctp_setsockopt_connectx(sk, |
| 3604 | (struct sockaddr __user *)optval, |
| 3605 | optlen); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 3606 | break; |
| 3607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3608 | case SCTP_DISABLE_FRAGMENTS: |
| 3609 | retval = sctp_setsockopt_disable_fragments(sk, optval, optlen); |
| 3610 | break; |
| 3611 | |
| 3612 | case SCTP_EVENTS: |
| 3613 | retval = sctp_setsockopt_events(sk, optval, optlen); |
| 3614 | break; |
| 3615 | |
| 3616 | case SCTP_AUTOCLOSE: |
| 3617 | retval = sctp_setsockopt_autoclose(sk, optval, optlen); |
| 3618 | break; |
| 3619 | |
| 3620 | case SCTP_PEER_ADDR_PARAMS: |
| 3621 | retval = sctp_setsockopt_peer_addr_params(sk, optval, optlen); |
| 3622 | break; |
| 3623 | |
Shan Wei | 4580ccc | 2011-01-18 22:39:00 +0000 | [diff] [blame] | 3624 | case SCTP_DELAYED_SACK: |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 3625 | retval = sctp_setsockopt_delayed_ack(sk, optval, optlen); |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 3626 | break; |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 3627 | case SCTP_PARTIAL_DELIVERY_POINT: |
| 3628 | retval = sctp_setsockopt_partial_delivery_point(sk, optval, optlen); |
| 3629 | break; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 3630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3631 | case SCTP_INITMSG: |
| 3632 | retval = sctp_setsockopt_initmsg(sk, optval, optlen); |
| 3633 | break; |
| 3634 | case SCTP_DEFAULT_SEND_PARAM: |
| 3635 | retval = sctp_setsockopt_default_send_param(sk, optval, |
| 3636 | optlen); |
| 3637 | break; |
| 3638 | case SCTP_PRIMARY_ADDR: |
| 3639 | retval = sctp_setsockopt_primary_addr(sk, optval, optlen); |
| 3640 | break; |
| 3641 | case SCTP_SET_PEER_PRIMARY_ADDR: |
| 3642 | retval = sctp_setsockopt_peer_primary_addr(sk, optval, optlen); |
| 3643 | break; |
| 3644 | case SCTP_NODELAY: |
| 3645 | retval = sctp_setsockopt_nodelay(sk, optval, optlen); |
| 3646 | break; |
| 3647 | case SCTP_RTOINFO: |
| 3648 | retval = sctp_setsockopt_rtoinfo(sk, optval, optlen); |
| 3649 | break; |
| 3650 | case SCTP_ASSOCINFO: |
| 3651 | retval = sctp_setsockopt_associnfo(sk, optval, optlen); |
| 3652 | break; |
| 3653 | case SCTP_I_WANT_MAPPED_V4_ADDR: |
| 3654 | retval = sctp_setsockopt_mappedv4(sk, optval, optlen); |
| 3655 | break; |
| 3656 | case SCTP_MAXSEG: |
| 3657 | retval = sctp_setsockopt_maxseg(sk, optval, optlen); |
| 3658 | break; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3659 | case SCTP_ADAPTATION_LAYER: |
| 3660 | retval = sctp_setsockopt_adaptation_layer(sk, optval, optlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3661 | break; |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 3662 | case SCTP_CONTEXT: |
| 3663 | retval = sctp_setsockopt_context(sk, optval, optlen); |
| 3664 | break; |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 3665 | case SCTP_FRAGMENT_INTERLEAVE: |
| 3666 | retval = sctp_setsockopt_fragment_interleave(sk, optval, optlen); |
| 3667 | break; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 3668 | case SCTP_MAX_BURST: |
| 3669 | retval = sctp_setsockopt_maxburst(sk, optval, optlen); |
| 3670 | break; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 3671 | case SCTP_AUTH_CHUNK: |
| 3672 | retval = sctp_setsockopt_auth_chunk(sk, optval, optlen); |
| 3673 | break; |
| 3674 | case SCTP_HMAC_IDENT: |
| 3675 | retval = sctp_setsockopt_hmac_ident(sk, optval, optlen); |
| 3676 | break; |
| 3677 | case SCTP_AUTH_KEY: |
| 3678 | retval = sctp_setsockopt_auth_key(sk, optval, optlen); |
| 3679 | break; |
| 3680 | case SCTP_AUTH_ACTIVE_KEY: |
| 3681 | retval = sctp_setsockopt_active_key(sk, optval, optlen); |
| 3682 | break; |
| 3683 | case SCTP_AUTH_DELETE_KEY: |
| 3684 | retval = sctp_setsockopt_del_key(sk, optval, optlen); |
| 3685 | break; |
Michio Honda | 7dc04d7 | 2011-04-26 20:16:31 +0900 | [diff] [blame] | 3686 | case SCTP_AUTO_ASCONF: |
| 3687 | retval = sctp_setsockopt_auto_asconf(sk, optval, optlen); |
| 3688 | break; |
Neil Horman | 5aa93bc | 2012-07-21 07:56:07 +0000 | [diff] [blame] | 3689 | case SCTP_PEER_ADDR_THLDS: |
| 3690 | retval = sctp_setsockopt_paddr_thresholds(sk, optval, optlen); |
| 3691 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3692 | default: |
| 3693 | retval = -ENOPROTOOPT; |
| 3694 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 3695 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3696 | |
| 3697 | sctp_release_sock(sk); |
| 3698 | |
| 3699 | out_nounlock: |
| 3700 | return retval; |
| 3701 | } |
| 3702 | |
| 3703 | /* API 3.1.6 connect() - UDP Style Syntax |
| 3704 | * |
| 3705 | * An application may use the connect() call in the UDP model to initiate an |
| 3706 | * association without sending data. |
| 3707 | * |
| 3708 | * The syntax is: |
| 3709 | * |
| 3710 | * ret = connect(int sd, const struct sockaddr *nam, socklen_t len); |
| 3711 | * |
| 3712 | * sd: the socket descriptor to have a new association added to. |
| 3713 | * |
| 3714 | * nam: the address structure (either struct sockaddr_in or struct |
| 3715 | * sockaddr_in6 defined in RFC2553 [7]). |
| 3716 | * |
| 3717 | * len: the size of the address. |
| 3718 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3719 | static int sctp_connect(struct sock *sk, struct sockaddr *addr, |
| 3720 | int addr_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3722 | int err = 0; |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 3723 | struct sctp_af *af; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | |
| 3725 | sctp_lock_sock(sk); |
| 3726 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 3727 | SCTP_DEBUG_PRINTK("%s - sk: %p, sockaddr: %p, addr_len: %d\n", |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 3728 | __func__, sk, addr, addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3729 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 3730 | /* Validate addr_len before calling common connect/connectx routine. */ |
| 3731 | af = sctp_get_af_specific(addr->sa_family); |
| 3732 | if (!af || addr_len < af->sockaddr_len) { |
| 3733 | err = -EINVAL; |
| 3734 | } else { |
| 3735 | /* Pass correct addr len to common routine (so it knows there |
| 3736 | * is only one address being passed. |
| 3737 | */ |
Vlad Yasevich | 88a0a94 | 2008-05-09 15:14:11 -0700 | [diff] [blame] | 3738 | err = __sctp_connect(sk, addr, af->sockaddr_len, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3739 | } |
| 3740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | sctp_release_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | return err; |
| 3743 | } |
| 3744 | |
| 3745 | /* FIXME: Write comments. */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3746 | static int sctp_disconnect(struct sock *sk, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | { |
| 3748 | return -EOPNOTSUPP; /* STUB */ |
| 3749 | } |
| 3750 | |
| 3751 | /* 4.1.4 accept() - TCP Style Syntax |
| 3752 | * |
| 3753 | * Applications use accept() call to remove an established SCTP |
| 3754 | * association from the accept queue of the endpoint. A new socket |
| 3755 | * descriptor will be returned from accept() to represent the newly |
| 3756 | * formed association. |
| 3757 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3758 | static struct sock *sctp_accept(struct sock *sk, int flags, int *err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3759 | { |
| 3760 | struct sctp_sock *sp; |
| 3761 | struct sctp_endpoint *ep; |
| 3762 | struct sock *newsk = NULL; |
| 3763 | struct sctp_association *asoc; |
| 3764 | long timeo; |
| 3765 | int error = 0; |
| 3766 | |
| 3767 | sctp_lock_sock(sk); |
| 3768 | |
| 3769 | sp = sctp_sk(sk); |
| 3770 | ep = sp->ep; |
| 3771 | |
| 3772 | if (!sctp_style(sk, TCP)) { |
| 3773 | error = -EOPNOTSUPP; |
| 3774 | goto out; |
| 3775 | } |
| 3776 | |
| 3777 | if (!sctp_sstate(sk, LISTENING)) { |
| 3778 | error = -EINVAL; |
| 3779 | goto out; |
| 3780 | } |
| 3781 | |
Sridhar Samudrala | 8abfedd | 2006-08-22 00:24:09 -0700 | [diff] [blame] | 3782 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3783 | |
| 3784 | error = sctp_wait_for_accept(sk, timeo); |
| 3785 | if (error) |
| 3786 | goto out; |
| 3787 | |
| 3788 | /* We treat the list of associations on the endpoint as the accept |
| 3789 | * queue and pick the first association on the list. |
| 3790 | */ |
| 3791 | asoc = list_entry(ep->asocs.next, struct sctp_association, asocs); |
| 3792 | |
| 3793 | newsk = sp->pf->create_accept_sk(sk, asoc); |
| 3794 | if (!newsk) { |
| 3795 | error = -ENOMEM; |
| 3796 | goto out; |
| 3797 | } |
| 3798 | |
| 3799 | /* Populate the fields of the newsk from the oldsk and migrate the |
| 3800 | * asoc to the newsk. |
| 3801 | */ |
| 3802 | sctp_sock_migrate(sk, newsk, asoc, SCTP_SOCKET_TCP); |
| 3803 | |
| 3804 | out: |
| 3805 | sctp_release_sock(sk); |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 3806 | *err = error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | return newsk; |
| 3808 | } |
| 3809 | |
| 3810 | /* The SCTP ioctl handler. */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3811 | static int sctp_ioctl(struct sock *sk, int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | { |
Diego Elio 'Flameeyes' Pettenò | 65040c3 | 2010-09-03 03:47:03 +0000 | [diff] [blame] | 3813 | int rc = -ENOTCONN; |
| 3814 | |
| 3815 | sctp_lock_sock(sk); |
| 3816 | |
| 3817 | /* |
| 3818 | * SEQPACKET-style sockets in LISTENING state are valid, for |
| 3819 | * SCTP, so only discard TCP-style sockets in LISTENING state. |
| 3820 | */ |
| 3821 | if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) |
| 3822 | goto out; |
| 3823 | |
| 3824 | switch (cmd) { |
| 3825 | case SIOCINQ: { |
| 3826 | struct sk_buff *skb; |
| 3827 | unsigned int amount = 0; |
| 3828 | |
| 3829 | skb = skb_peek(&sk->sk_receive_queue); |
| 3830 | if (skb != NULL) { |
| 3831 | /* |
| 3832 | * We will only return the amount of this packet since |
| 3833 | * that is all that will be read. |
| 3834 | */ |
| 3835 | amount = skb->len; |
| 3836 | } |
| 3837 | rc = put_user(amount, (int __user *)arg); |
Diego Elio 'Flameeyes' Pettenò | 65040c3 | 2010-09-03 03:47:03 +0000 | [diff] [blame] | 3838 | break; |
David S. Miller | 9a7241c | 2010-10-03 22:14:37 -0700 | [diff] [blame] | 3839 | } |
Diego Elio 'Flameeyes' Pettenò | 65040c3 | 2010-09-03 03:47:03 +0000 | [diff] [blame] | 3840 | default: |
| 3841 | rc = -ENOIOCTLCMD; |
| 3842 | break; |
| 3843 | } |
| 3844 | out: |
| 3845 | sctp_release_sock(sk); |
| 3846 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3847 | } |
| 3848 | |
| 3849 | /* This is the function which gets called during socket creation to |
| 3850 | * initialized the SCTP-specific portion of the sock. |
| 3851 | * The sock structure should already be zero-filled memory. |
| 3852 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3853 | static int sctp_init_sock(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3854 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3855 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | struct sctp_sock *sp; |
| 3857 | |
| 3858 | SCTP_DEBUG_PRINTK("sctp_init_sock(sk: %p)\n", sk); |
| 3859 | |
| 3860 | sp = sctp_sk(sk); |
| 3861 | |
| 3862 | /* Initialize the SCTP per socket area. */ |
| 3863 | switch (sk->sk_type) { |
| 3864 | case SOCK_SEQPACKET: |
| 3865 | sp->type = SCTP_SOCKET_UDP; |
| 3866 | break; |
| 3867 | case SOCK_STREAM: |
| 3868 | sp->type = SCTP_SOCKET_TCP; |
| 3869 | break; |
| 3870 | default: |
| 3871 | return -ESOCKTNOSUPPORT; |
| 3872 | } |
| 3873 | |
| 3874 | /* Initialize default send parameters. These parameters can be |
| 3875 | * modified with the SCTP_DEFAULT_SEND_PARAM socket option. |
| 3876 | */ |
| 3877 | sp->default_stream = 0; |
| 3878 | sp->default_ppid = 0; |
| 3879 | sp->default_flags = 0; |
| 3880 | sp->default_context = 0; |
| 3881 | sp->default_timetolive = 0; |
| 3882 | |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 3883 | sp->default_rcv_context = 0; |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3884 | sp->max_burst = net->sctp.max_burst; |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 3885 | |
Neil Horman | 3c68198 | 2012-10-24 09:20:03 +0000 | [diff] [blame] | 3886 | sp->sctp_hmac_alg = net->sctp.sctp_hmac_alg; |
| 3887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | /* Initialize default setup parameters. These parameters |
| 3889 | * can be modified with the SCTP_INITMSG socket option or |
| 3890 | * overridden by the SCTP_INIT CMSG. |
| 3891 | */ |
| 3892 | sp->initmsg.sinit_num_ostreams = sctp_max_outstreams; |
| 3893 | sp->initmsg.sinit_max_instreams = sctp_max_instreams; |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3894 | sp->initmsg.sinit_max_attempts = net->sctp.max_retrans_init; |
| 3895 | sp->initmsg.sinit_max_init_timeo = net->sctp.rto_max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3896 | |
| 3897 | /* Initialize default RTO related parameters. These parameters can |
| 3898 | * be modified for with the SCTP_RTOINFO socket option. |
| 3899 | */ |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3900 | sp->rtoinfo.srto_initial = net->sctp.rto_initial; |
| 3901 | sp->rtoinfo.srto_max = net->sctp.rto_max; |
| 3902 | sp->rtoinfo.srto_min = net->sctp.rto_min; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3903 | |
| 3904 | /* Initialize default association related parameters. These parameters |
| 3905 | * can be modified with the SCTP_ASSOCINFO socket option. |
| 3906 | */ |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3907 | sp->assocparams.sasoc_asocmaxrxt = net->sctp.max_retrans_association; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | sp->assocparams.sasoc_number_peer_destinations = 0; |
| 3909 | sp->assocparams.sasoc_peer_rwnd = 0; |
| 3910 | sp->assocparams.sasoc_local_rwnd = 0; |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3911 | sp->assocparams.sasoc_cookie_life = net->sctp.valid_cookie_life; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | |
| 3913 | /* Initialize default event subscriptions. By default, all the |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 3914 | * options are off. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3915 | */ |
| 3916 | memset(&sp->subscribe, 0, sizeof(struct sctp_event_subscribe)); |
| 3917 | |
| 3918 | /* Default Peer Address Parameters. These defaults can |
| 3919 | * be modified via SCTP_PEER_ADDR_PARAMS |
| 3920 | */ |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3921 | sp->hbinterval = net->sctp.hb_interval; |
| 3922 | sp->pathmaxrxt = net->sctp.max_retrans_path; |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 3923 | sp->pathmtu = 0; // allow default discovery |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3924 | sp->sackdelay = net->sctp.sack_timeout; |
Vlad Yasevich | 7bfe8bd | 2008-06-09 15:45:05 -0700 | [diff] [blame] | 3925 | sp->sackfreq = 2; |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 3926 | sp->param_flags = SPP_HB_ENABLE | |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 3927 | SPP_PMTUD_ENABLE | |
| 3928 | SPP_SACKDELAY_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3929 | |
| 3930 | /* If enabled no SCTP message fragmentation will be performed. |
| 3931 | * Configure through SCTP_DISABLE_FRAGMENTS socket option. |
| 3932 | */ |
| 3933 | sp->disable_fragments = 0; |
| 3934 | |
Sridhar Samudrala | 208edef | 2006-09-29 17:08:01 -0700 | [diff] [blame] | 3935 | /* Enable Nagle algorithm by default. */ |
| 3936 | sp->nodelay = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3937 | |
| 3938 | /* Enable by default. */ |
| 3939 | sp->v4mapped = 1; |
| 3940 | |
| 3941 | /* Auto-close idle associations after the configured |
| 3942 | * number of seconds. A value of 0 disables this |
| 3943 | * feature. Configure through the SCTP_AUTOCLOSE socket option, |
| 3944 | * for UDP-style sockets only. |
| 3945 | */ |
| 3946 | sp->autoclose = 0; |
| 3947 | |
| 3948 | /* User specified fragmentation limit. */ |
| 3949 | sp->user_frag = 0; |
| 3950 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 3951 | sp->adaptation_ind = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | |
| 3953 | sp->pf = sctp_get_pf_specific(sk->sk_family); |
| 3954 | |
| 3955 | /* Control variables for partial data delivery. */ |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 3956 | atomic_set(&sp->pd_mode, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | skb_queue_head_init(&sp->pd_lobby); |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 3958 | sp->frag_interleave = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | |
| 3960 | /* Create a per socket endpoint structure. Even if we |
| 3961 | * change the data structure relationships, this may still |
| 3962 | * be useful for storing pre-connect address information. |
| 3963 | */ |
Daniel Borkmann | c164b83 | 2013-06-14 18:24:06 +0200 | [diff] [blame] | 3964 | sp->ep = sctp_endpoint_new(sk, GFP_KERNEL); |
| 3965 | if (!sp->ep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3966 | return -ENOMEM; |
| 3967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3968 | sp->hmac = NULL; |
| 3969 | |
Daniel Borkmann | 0a2fbac | 2013-06-25 18:17:29 +0200 | [diff] [blame] | 3970 | sk->sk_destruct = sctp_destruct_sock; |
| 3971 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | SCTP_DBG_OBJCNT_INC(sock); |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 3973 | |
| 3974 | local_bh_disable(); |
Vlad Yasevich | 81419d8 | 2010-04-28 08:47:20 +0000 | [diff] [blame] | 3975 | percpu_counter_inc(&sctp_sockets_allocated); |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3976 | sock_prot_inuse_add(net, sk->sk_prot, 1); |
| 3977 | if (net->sctp.default_auto_asconf) { |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 3978 | list_add_tail(&sp->auto_asconf_list, |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 3979 | &net->sctp.auto_asconf_splist); |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 3980 | sp->do_auto_asconf = 1; |
| 3981 | } else |
| 3982 | sp->do_auto_asconf = 0; |
David S. Miller | 6f756a8 | 2008-11-23 17:34:03 -0800 | [diff] [blame] | 3983 | local_bh_enable(); |
| 3984 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3985 | return 0; |
| 3986 | } |
| 3987 | |
| 3988 | /* Cleanup any SCTP per socket resources. */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 3989 | static void sctp_destroy_sock(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | { |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 3991 | struct sctp_sock *sp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3992 | |
| 3993 | SCTP_DEBUG_PRINTK("sctp_destroy_sock(sk: %p)\n", sk); |
| 3994 | |
| 3995 | /* Release our hold on the endpoint. */ |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 3996 | sp = sctp_sk(sk); |
Daniel Borkmann | 1abd165 | 2013-06-06 15:53:47 +0200 | [diff] [blame] | 3997 | /* This could happen during socket init, thus we bail out |
| 3998 | * early, since the rest of the below is not setup either. |
| 3999 | */ |
| 4000 | if (sp->ep == NULL) |
| 4001 | return; |
| 4002 | |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 4003 | if (sp->do_auto_asconf) { |
| 4004 | sp->do_auto_asconf = 0; |
| 4005 | list_del(&sp->auto_asconf_list); |
| 4006 | } |
| 4007 | sctp_endpoint_free(sp->ep); |
Eric Dumazet | 5bc0b3b | 2008-11-25 13:53:27 -0800 | [diff] [blame] | 4008 | local_bh_disable(); |
Vlad Yasevich | 81419d8 | 2010-04-28 08:47:20 +0000 | [diff] [blame] | 4009 | percpu_counter_dec(&sctp_sockets_allocated); |
Eric Dumazet | 9a57f7f | 2008-11-17 02:41:00 -0800 | [diff] [blame] | 4010 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); |
Eric Dumazet | 5bc0b3b | 2008-11-25 13:53:27 -0800 | [diff] [blame] | 4011 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4012 | } |
| 4013 | |
Daniel Borkmann | 0a2fbac | 2013-06-25 18:17:29 +0200 | [diff] [blame] | 4014 | /* Triggered when there are no references on the socket anymore */ |
| 4015 | static void sctp_destruct_sock(struct sock *sk) |
| 4016 | { |
| 4017 | struct sctp_sock *sp = sctp_sk(sk); |
| 4018 | |
| 4019 | /* Free up the HMAC transform. */ |
| 4020 | crypto_free_hash(sp->hmac); |
| 4021 | |
| 4022 | inet_sock_destruct(sk); |
| 4023 | } |
| 4024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4025 | /* API 4.1.7 shutdown() - TCP Style Syntax |
| 4026 | * int shutdown(int socket, int how); |
| 4027 | * |
| 4028 | * sd - the socket descriptor of the association to be closed. |
| 4029 | * how - Specifies the type of shutdown. The values are |
| 4030 | * as follows: |
| 4031 | * SHUT_RD |
| 4032 | * Disables further receive operations. No SCTP |
| 4033 | * protocol action is taken. |
| 4034 | * SHUT_WR |
| 4035 | * Disables further send operations, and initiates |
| 4036 | * the SCTP shutdown sequence. |
| 4037 | * SHUT_RDWR |
| 4038 | * Disables further send and receive operations |
| 4039 | * and initiates the SCTP shutdown sequence. |
| 4040 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 4041 | static void sctp_shutdown(struct sock *sk, int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4042 | { |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 4043 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4044 | struct sctp_endpoint *ep; |
| 4045 | struct sctp_association *asoc; |
| 4046 | |
| 4047 | if (!sctp_style(sk, TCP)) |
| 4048 | return; |
| 4049 | |
| 4050 | if (how & SEND_SHUTDOWN) { |
| 4051 | ep = sctp_sk(sk)->ep; |
| 4052 | if (!list_empty(&ep->asocs)) { |
| 4053 | asoc = list_entry(ep->asocs.next, |
| 4054 | struct sctp_association, asocs); |
Eric W. Biederman | 55e26eb | 2012-08-07 07:25:24 +0000 | [diff] [blame] | 4055 | sctp_primitive_SHUTDOWN(net, asoc, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4056 | } |
| 4057 | } |
| 4058 | } |
| 4059 | |
| 4060 | /* 7.2.1 Association Status (SCTP_STATUS) |
| 4061 | |
| 4062 | * Applications can retrieve current status information about an |
| 4063 | * association, including association state, peer receiver window size, |
| 4064 | * number of unacked data chunks, and number of data chunks pending |
| 4065 | * receipt. This information is read-only. |
| 4066 | */ |
| 4067 | static int sctp_getsockopt_sctp_status(struct sock *sk, int len, |
| 4068 | char __user *optval, |
| 4069 | int __user *optlen) |
| 4070 | { |
| 4071 | struct sctp_status status; |
| 4072 | struct sctp_association *asoc = NULL; |
| 4073 | struct sctp_transport *transport; |
| 4074 | sctp_assoc_t associd; |
| 4075 | int retval = 0; |
| 4076 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4077 | if (len < sizeof(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4078 | retval = -EINVAL; |
| 4079 | goto out; |
| 4080 | } |
| 4081 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4082 | len = sizeof(status); |
| 4083 | if (copy_from_user(&status, optval, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4084 | retval = -EFAULT; |
| 4085 | goto out; |
| 4086 | } |
| 4087 | |
| 4088 | associd = status.sstat_assoc_id; |
| 4089 | asoc = sctp_id2assoc(sk, associd); |
| 4090 | if (!asoc) { |
| 4091 | retval = -EINVAL; |
| 4092 | goto out; |
| 4093 | } |
| 4094 | |
| 4095 | transport = asoc->peer.primary_path; |
| 4096 | |
| 4097 | status.sstat_assoc_id = sctp_assoc2id(asoc); |
| 4098 | status.sstat_state = asoc->state; |
| 4099 | status.sstat_rwnd = asoc->peer.rwnd; |
| 4100 | status.sstat_unackdata = asoc->unack_data; |
| 4101 | |
| 4102 | status.sstat_penddata = sctp_tsnmap_pending(&asoc->peer.tsn_map); |
| 4103 | status.sstat_instrms = asoc->c.sinit_max_instreams; |
| 4104 | status.sstat_outstrms = asoc->c.sinit_num_ostreams; |
| 4105 | status.sstat_fragmentation_point = asoc->frag_point; |
| 4106 | status.sstat_primary.spinfo_assoc_id = sctp_assoc2id(transport->asoc); |
Al Viro | 8cec6b8 | 2006-11-20 17:23:01 -0800 | [diff] [blame] | 4107 | memcpy(&status.sstat_primary.spinfo_address, &transport->ipaddr, |
| 4108 | transport->af_specific->sockaddr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | /* Map ipv4 address into v4-mapped-on-v6 address. */ |
| 4110 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk), |
| 4111 | (union sctp_addr *)&status.sstat_primary.spinfo_address); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 4112 | status.sstat_primary.spinfo_state = transport->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4113 | status.sstat_primary.spinfo_cwnd = transport->cwnd; |
| 4114 | status.sstat_primary.spinfo_srtt = transport->srtt; |
| 4115 | status.sstat_primary.spinfo_rto = jiffies_to_msecs(transport->rto); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4116 | status.sstat_primary.spinfo_mtu = transport->pathmtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4117 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 4118 | if (status.sstat_primary.spinfo_state == SCTP_UNKNOWN) |
| 4119 | status.sstat_primary.spinfo_state = SCTP_ACTIVE; |
| 4120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | if (put_user(len, optlen)) { |
| 4122 | retval = -EFAULT; |
| 4123 | goto out; |
| 4124 | } |
| 4125 | |
| 4126 | SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n", |
| 4127 | len, status.sstat_state, status.sstat_rwnd, |
| 4128 | status.sstat_assoc_id); |
| 4129 | |
| 4130 | if (copy_to_user(optval, &status, len)) { |
| 4131 | retval = -EFAULT; |
| 4132 | goto out; |
| 4133 | } |
| 4134 | |
| 4135 | out: |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 4136 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4137 | } |
| 4138 | |
| 4139 | |
| 4140 | /* 7.2.2 Peer Address Information (SCTP_GET_PEER_ADDR_INFO) |
| 4141 | * |
| 4142 | * Applications can retrieve information about a specific peer address |
| 4143 | * of an association, including its reachability state, congestion |
| 4144 | * window, and retransmission timer values. This information is |
| 4145 | * read-only. |
| 4146 | */ |
| 4147 | static int sctp_getsockopt_peer_addr_info(struct sock *sk, int len, |
| 4148 | char __user *optval, |
| 4149 | int __user *optlen) |
| 4150 | { |
| 4151 | struct sctp_paddrinfo pinfo; |
| 4152 | struct sctp_transport *transport; |
| 4153 | int retval = 0; |
| 4154 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4155 | if (len < sizeof(pinfo)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4156 | retval = -EINVAL; |
| 4157 | goto out; |
| 4158 | } |
| 4159 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4160 | len = sizeof(pinfo); |
| 4161 | if (copy_from_user(&pinfo, optval, len)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4162 | retval = -EFAULT; |
| 4163 | goto out; |
| 4164 | } |
| 4165 | |
| 4166 | transport = sctp_addr_id2transport(sk, &pinfo.spinfo_address, |
| 4167 | pinfo.spinfo_assoc_id); |
| 4168 | if (!transport) |
| 4169 | return -EINVAL; |
| 4170 | |
| 4171 | pinfo.spinfo_assoc_id = sctp_assoc2id(transport->asoc); |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 4172 | pinfo.spinfo_state = transport->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4173 | pinfo.spinfo_cwnd = transport->cwnd; |
| 4174 | pinfo.spinfo_srtt = transport->srtt; |
| 4175 | pinfo.spinfo_rto = jiffies_to_msecs(transport->rto); |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4176 | pinfo.spinfo_mtu = transport->pathmtu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4177 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 4178 | if (pinfo.spinfo_state == SCTP_UNKNOWN) |
| 4179 | pinfo.spinfo_state = SCTP_ACTIVE; |
| 4180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4181 | if (put_user(len, optlen)) { |
| 4182 | retval = -EFAULT; |
| 4183 | goto out; |
| 4184 | } |
| 4185 | |
| 4186 | if (copy_to_user(optval, &pinfo, len)) { |
| 4187 | retval = -EFAULT; |
| 4188 | goto out; |
| 4189 | } |
| 4190 | |
| 4191 | out: |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 4192 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4193 | } |
| 4194 | |
| 4195 | /* 7.1.12 Enable/Disable message fragmentation (SCTP_DISABLE_FRAGMENTS) |
| 4196 | * |
| 4197 | * This option is a on/off flag. If enabled no SCTP message |
| 4198 | * fragmentation will be performed. Instead if a message being sent |
| 4199 | * exceeds the current PMTU size, the message will NOT be sent and |
| 4200 | * instead a error will be indicated to the user. |
| 4201 | */ |
| 4202 | static int sctp_getsockopt_disable_fragments(struct sock *sk, int len, |
| 4203 | char __user *optval, int __user *optlen) |
| 4204 | { |
| 4205 | int val; |
| 4206 | |
| 4207 | if (len < sizeof(int)) |
| 4208 | return -EINVAL; |
| 4209 | |
| 4210 | len = sizeof(int); |
| 4211 | val = (sctp_sk(sk)->disable_fragments == 1); |
| 4212 | if (put_user(len, optlen)) |
| 4213 | return -EFAULT; |
| 4214 | if (copy_to_user(optval, &val, len)) |
| 4215 | return -EFAULT; |
| 4216 | return 0; |
| 4217 | } |
| 4218 | |
| 4219 | /* 7.1.15 Set notification and ancillary events (SCTP_EVENTS) |
| 4220 | * |
| 4221 | * This socket option is used to specify various notifications and |
| 4222 | * ancillary data the user wishes to receive. |
| 4223 | */ |
| 4224 | static int sctp_getsockopt_events(struct sock *sk, int len, char __user *optval, |
| 4225 | int __user *optlen) |
| 4226 | { |
Thomas Graf | acdd598 | 2012-04-03 22:17:53 +0000 | [diff] [blame] | 4227 | if (len <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4228 | return -EINVAL; |
Thomas Graf | acdd598 | 2012-04-03 22:17:53 +0000 | [diff] [blame] | 4229 | if (len > sizeof(struct sctp_event_subscribe)) |
| 4230 | len = sizeof(struct sctp_event_subscribe); |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4231 | if (put_user(len, optlen)) |
| 4232 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4233 | if (copy_to_user(optval, &sctp_sk(sk)->subscribe, len)) |
| 4234 | return -EFAULT; |
| 4235 | return 0; |
| 4236 | } |
| 4237 | |
| 4238 | /* 7.1.8 Automatic Close of associations (SCTP_AUTOCLOSE) |
| 4239 | * |
| 4240 | * This socket option is applicable to the UDP-style socket only. When |
| 4241 | * set it will cause associations that are idle for more than the |
| 4242 | * specified number of seconds to automatically close. An association |
| 4243 | * being idle is defined an association that has NOT sent or received |
| 4244 | * user data. The special value of '0' indicates that no automatic |
| 4245 | * close of any associations should be performed. The option expects an |
| 4246 | * integer defining the number of seconds of idle time before an |
| 4247 | * association is closed. |
| 4248 | */ |
| 4249 | static int sctp_getsockopt_autoclose(struct sock *sk, int len, char __user *optval, int __user *optlen) |
| 4250 | { |
| 4251 | /* Applicable to UDP-style socket only */ |
| 4252 | if (sctp_style(sk, TCP)) |
| 4253 | return -EOPNOTSUPP; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4254 | if (len < sizeof(int)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4255 | return -EINVAL; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4256 | len = sizeof(int); |
| 4257 | if (put_user(len, optlen)) |
| 4258 | return -EFAULT; |
| 4259 | if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4260 | return -EFAULT; |
| 4261 | return 0; |
| 4262 | } |
| 4263 | |
| 4264 | /* Helper routine to branch off an association to a new socket. */ |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4265 | int sctp_do_peeloff(struct sock *sk, sctp_assoc_t id, struct socket **sockp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | { |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4267 | struct sctp_association *asoc = sctp_id2assoc(sk, id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4268 | struct socket *sock; |
Vlad Yasevich | d570ee4 | 2007-05-15 16:32:39 -0400 | [diff] [blame] | 4269 | struct sctp_af *af; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4270 | int err = 0; |
| 4271 | |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4272 | if (!asoc) |
| 4273 | return -EINVAL; |
| 4274 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4275 | /* An association cannot be branched off from an already peeled-off |
| 4276 | * socket, nor is this supported for tcp style sockets. |
| 4277 | */ |
| 4278 | if (!sctp_style(sk, UDP)) |
| 4279 | return -EINVAL; |
| 4280 | |
| 4281 | /* Create a new socket. */ |
| 4282 | err = sock_create(sk->sk_family, SOCK_SEQPACKET, IPPROTO_SCTP, &sock); |
| 4283 | if (err < 0) |
| 4284 | return err; |
| 4285 | |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 4286 | sctp_copy_sock(sock->sk, sk, asoc); |
Vlad Yasevich | 4f44430 | 2006-10-30 18:54:32 -0800 | [diff] [blame] | 4287 | |
| 4288 | /* Make peeled-off sockets more like 1-1 accepted sockets. |
| 4289 | * Set the daddr and initialize id to something more random |
| 4290 | */ |
Vlad Yasevich | d570ee4 | 2007-05-15 16:32:39 -0400 | [diff] [blame] | 4291 | af = sctp_get_af_specific(asoc->peer.primary_addr.sa.sa_family); |
| 4292 | af->to_sk_daddr(&asoc->peer.primary_addr, sk); |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 4293 | |
| 4294 | /* Populate the fields of the newsk from the oldsk and migrate the |
| 4295 | * asoc to the newsk. |
| 4296 | */ |
| 4297 | sctp_sock_migrate(sk, sock->sk, asoc, SCTP_SOCKET_UDP_HIGH_BANDWIDTH); |
Vlad Yasevich | 4f44430 | 2006-10-30 18:54:32 -0800 | [diff] [blame] | 4298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4299 | *sockp = sock; |
| 4300 | |
| 4301 | return err; |
| 4302 | } |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4303 | EXPORT_SYMBOL(sctp_do_peeloff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4304 | |
| 4305 | static int sctp_getsockopt_peeloff(struct sock *sk, int len, char __user *optval, int __user *optlen) |
| 4306 | { |
| 4307 | sctp_peeloff_arg_t peeloff; |
| 4308 | struct socket *newsock; |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 4309 | struct file *newfile; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4310 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4312 | if (len < sizeof(sctp_peeloff_arg_t)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | return -EINVAL; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4314 | len = sizeof(sctp_peeloff_arg_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4315 | if (copy_from_user(&peeloff, optval, len)) |
| 4316 | return -EFAULT; |
| 4317 | |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4318 | retval = sctp_do_peeloff(sk, peeloff.associd, &newsock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4319 | if (retval < 0) |
| 4320 | goto out; |
| 4321 | |
| 4322 | /* Map the socket to an unused fd that can be returned to the user. */ |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 4323 | retval = get_unused_fd(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | if (retval < 0) { |
| 4325 | sock_release(newsock); |
| 4326 | goto out; |
| 4327 | } |
| 4328 | |
Linus Torvalds | aab174f | 2012-10-02 20:25:04 -0700 | [diff] [blame] | 4329 | newfile = sock_alloc_file(newsock, 0, NULL); |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 4330 | if (unlikely(IS_ERR(newfile))) { |
| 4331 | put_unused_fd(retval); |
| 4332 | sock_release(newsock); |
| 4333 | return PTR_ERR(newfile); |
| 4334 | } |
| 4335 | |
Benjamin Poirier | 0343c55 | 2012-03-08 05:55:58 +0000 | [diff] [blame] | 4336 | SCTP_DEBUG_PRINTK("%s: sk: %p newsk: %p sd: %d\n", |
| 4337 | __func__, sk, newsock->sk, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4338 | |
| 4339 | /* Return the fd mapped to the new socket. */ |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 4340 | if (put_user(len, optlen)) { |
| 4341 | fput(newfile); |
| 4342 | put_unused_fd(retval); |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4343 | return -EFAULT; |
Al Viro | 56b31d1 | 2012-08-18 00:25:51 -0400 | [diff] [blame] | 4344 | } |
| 4345 | peeloff.sd = retval; |
| 4346 | if (copy_to_user(optval, &peeloff, len)) { |
| 4347 | fput(newfile); |
| 4348 | put_unused_fd(retval); |
| 4349 | return -EFAULT; |
| 4350 | } |
| 4351 | fd_install(retval, newfile); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | out: |
| 4353 | return retval; |
| 4354 | } |
| 4355 | |
| 4356 | /* 7.1.13 Peer Address Parameters (SCTP_PEER_ADDR_PARAMS) |
| 4357 | * |
| 4358 | * Applications can enable or disable heartbeats for any peer address of |
| 4359 | * an association, modify an address's heartbeat interval, force a |
| 4360 | * heartbeat to be sent immediately, and adjust the address's maximum |
| 4361 | * number of retransmissions sent before an address is considered |
| 4362 | * unreachable. The following structure is used to access and modify an |
| 4363 | * address's parameters: |
| 4364 | * |
| 4365 | * struct sctp_paddrparams { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4366 | * sctp_assoc_t spp_assoc_id; |
| 4367 | * struct sockaddr_storage spp_address; |
| 4368 | * uint32_t spp_hbinterval; |
| 4369 | * uint16_t spp_pathmaxrxt; |
| 4370 | * uint32_t spp_pathmtu; |
| 4371 | * uint32_t spp_sackdelay; |
| 4372 | * uint32_t spp_flags; |
| 4373 | * }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4374 | * |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4375 | * spp_assoc_id - (one-to-many style socket) This is filled in the |
| 4376 | * application, and identifies the association for |
| 4377 | * this query. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4378 | * spp_address - This specifies which address is of interest. |
| 4379 | * spp_hbinterval - This contains the value of the heartbeat interval, |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4380 | * in milliseconds. If a value of zero |
| 4381 | * is present in this field then no changes are to |
| 4382 | * be made to this parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4383 | * spp_pathmaxrxt - This contains the maximum number of |
| 4384 | * retransmissions before this address shall be |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4385 | * considered unreachable. If a value of zero |
| 4386 | * is present in this field then no changes are to |
| 4387 | * be made to this parameter. |
| 4388 | * spp_pathmtu - When Path MTU discovery is disabled the value |
| 4389 | * specified here will be the "fixed" path mtu. |
| 4390 | * Note that if the spp_address field is empty |
| 4391 | * then all associations on this address will |
| 4392 | * have this fixed path mtu set upon them. |
| 4393 | * |
| 4394 | * spp_sackdelay - When delayed sack is enabled, this value specifies |
| 4395 | * the number of milliseconds that sacks will be delayed |
| 4396 | * for. This value will apply to all addresses of an |
| 4397 | * association if the spp_address field is empty. Note |
| 4398 | * also, that if delayed sack is enabled and this |
| 4399 | * value is set to 0, no change is made to the last |
| 4400 | * recorded delayed sack timer value. |
| 4401 | * |
| 4402 | * spp_flags - These flags are used to control various features |
| 4403 | * on an association. The flag field may contain |
| 4404 | * zero or more of the following options. |
| 4405 | * |
| 4406 | * SPP_HB_ENABLE - Enable heartbeats on the |
| 4407 | * specified address. Note that if the address |
| 4408 | * field is empty all addresses for the association |
| 4409 | * have heartbeats enabled upon them. |
| 4410 | * |
| 4411 | * SPP_HB_DISABLE - Disable heartbeats on the |
| 4412 | * speicifed address. Note that if the address |
| 4413 | * field is empty all addresses for the association |
| 4414 | * will have their heartbeats disabled. Note also |
| 4415 | * that SPP_HB_ENABLE and SPP_HB_DISABLE are |
| 4416 | * mutually exclusive, only one of these two should |
| 4417 | * be specified. Enabling both fields will have |
| 4418 | * undetermined results. |
| 4419 | * |
| 4420 | * SPP_HB_DEMAND - Request a user initiated heartbeat |
| 4421 | * to be made immediately. |
| 4422 | * |
| 4423 | * SPP_PMTUD_ENABLE - This field will enable PMTU |
| 4424 | * discovery upon the specified address. Note that |
| 4425 | * if the address feild is empty then all addresses |
| 4426 | * on the association are effected. |
| 4427 | * |
| 4428 | * SPP_PMTUD_DISABLE - This field will disable PMTU |
| 4429 | * discovery upon the specified address. Note that |
| 4430 | * if the address feild is empty then all addresses |
| 4431 | * on the association are effected. Not also that |
| 4432 | * SPP_PMTUD_ENABLE and SPP_PMTUD_DISABLE are mutually |
| 4433 | * exclusive. Enabling both will have undetermined |
| 4434 | * results. |
| 4435 | * |
| 4436 | * SPP_SACKDELAY_ENABLE - Setting this flag turns |
| 4437 | * on delayed sack. The time specified in spp_sackdelay |
| 4438 | * is used to specify the sack delay for this address. Note |
| 4439 | * that if spp_address is empty then all addresses will |
| 4440 | * enable delayed sack and take on the sack delay |
| 4441 | * value specified in spp_sackdelay. |
| 4442 | * SPP_SACKDELAY_DISABLE - Setting this flag turns |
| 4443 | * off delayed sack. If the spp_address field is blank then |
| 4444 | * delayed sack is disabled for the entire association. Note |
| 4445 | * also that this field is mutually exclusive to |
| 4446 | * SPP_SACKDELAY_ENABLE, setting both will have undefined |
| 4447 | * results. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | */ |
| 4449 | static int sctp_getsockopt_peer_addr_params(struct sock *sk, int len, |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4450 | char __user *optval, int __user *optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4451 | { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4452 | struct sctp_paddrparams params; |
| 4453 | struct sctp_transport *trans = NULL; |
| 4454 | struct sctp_association *asoc = NULL; |
| 4455 | struct sctp_sock *sp = sctp_sk(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4456 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4457 | if (len < sizeof(struct sctp_paddrparams)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4458 | return -EINVAL; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4459 | len = sizeof(struct sctp_paddrparams); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4460 | if (copy_from_user(¶ms, optval, len)) |
| 4461 | return -EFAULT; |
| 4462 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4463 | /* If an address other than INADDR_ANY is specified, and |
| 4464 | * no transport is found, then the request is invalid. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4465 | */ |
Vlad Yasevich | 52cae8f | 2008-08-18 10:34:34 -0400 | [diff] [blame] | 4466 | if (!sctp_is_any(sk, ( union sctp_addr *)¶ms.spp_address)) { |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4467 | trans = sctp_addr_id2transport(sk, ¶ms.spp_address, |
| 4468 | params.spp_assoc_id); |
| 4469 | if (!trans) { |
| 4470 | SCTP_DEBUG_PRINTK("Failed no transport\n"); |
| 4471 | return -EINVAL; |
| 4472 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4473 | } |
| 4474 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4475 | /* Get association, if assoc_id != 0 and the socket is a one |
| 4476 | * to many style socket, and an association was not found, then |
| 4477 | * the id was invalid. |
| 4478 | */ |
| 4479 | asoc = sctp_id2assoc(sk, params.spp_assoc_id); |
| 4480 | if (!asoc && params.spp_assoc_id && sctp_style(sk, UDP)) { |
| 4481 | SCTP_DEBUG_PRINTK("Failed no association\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4482 | return -EINVAL; |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4483 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4485 | if (trans) { |
| 4486 | /* Fetch transport values. */ |
| 4487 | params.spp_hbinterval = jiffies_to_msecs(trans->hbinterval); |
| 4488 | params.spp_pathmtu = trans->pathmtu; |
| 4489 | params.spp_pathmaxrxt = trans->pathmaxrxt; |
| 4490 | params.spp_sackdelay = jiffies_to_msecs(trans->sackdelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4492 | /*draft-11 doesn't say what to return in spp_flags*/ |
| 4493 | params.spp_flags = trans->param_flags; |
| 4494 | } else if (asoc) { |
| 4495 | /* Fetch association values. */ |
| 4496 | params.spp_hbinterval = jiffies_to_msecs(asoc->hbinterval); |
| 4497 | params.spp_pathmtu = asoc->pathmtu; |
| 4498 | params.spp_pathmaxrxt = asoc->pathmaxrxt; |
| 4499 | params.spp_sackdelay = jiffies_to_msecs(asoc->sackdelay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | |
Frank Filz | 52ccb8e | 2005-12-22 11:36:46 -0800 | [diff] [blame] | 4501 | /*draft-11 doesn't say what to return in spp_flags*/ |
| 4502 | params.spp_flags = asoc->param_flags; |
| 4503 | } else { |
| 4504 | /* Fetch socket values. */ |
| 4505 | params.spp_hbinterval = sp->hbinterval; |
| 4506 | params.spp_pathmtu = sp->pathmtu; |
| 4507 | params.spp_sackdelay = sp->sackdelay; |
| 4508 | params.spp_pathmaxrxt = sp->pathmaxrxt; |
| 4509 | |
| 4510 | /*draft-11 doesn't say what to return in spp_flags*/ |
| 4511 | params.spp_flags = sp->param_flags; |
| 4512 | } |
| 4513 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4514 | if (copy_to_user(optval, ¶ms, len)) |
| 4515 | return -EFAULT; |
| 4516 | |
| 4517 | if (put_user(len, optlen)) |
| 4518 | return -EFAULT; |
| 4519 | |
| 4520 | return 0; |
| 4521 | } |
| 4522 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4523 | /* |
| 4524 | * 7.1.23. Get or set delayed ack timer (SCTP_DELAYED_SACK) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4525 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4526 | * This option will effect the way delayed acks are performed. This |
| 4527 | * option allows you to get or set the delayed ack time, in |
| 4528 | * milliseconds. It also allows changing the delayed ack frequency. |
| 4529 | * Changing the frequency to 1 disables the delayed sack algorithm. If |
| 4530 | * the assoc_id is 0, then this sets or gets the endpoints default |
| 4531 | * values. If the assoc_id field is non-zero, then the set or get |
| 4532 | * effects the specified association for the one to many model (the |
| 4533 | * assoc_id field is ignored by the one to one model). Note that if |
| 4534 | * sack_delay or sack_freq are 0 when setting this option, then the |
| 4535 | * current values will remain unchanged. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4536 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4537 | * struct sctp_sack_info { |
| 4538 | * sctp_assoc_t sack_assoc_id; |
| 4539 | * uint32_t sack_delay; |
| 4540 | * uint32_t sack_freq; |
| 4541 | * }; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4542 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4543 | * sack_assoc_id - This parameter, indicates which association the user |
| 4544 | * is performing an action upon. Note that if this field's value is |
| 4545 | * zero then the endpoints default value is changed (effecting future |
| 4546 | * associations only). |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4547 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4548 | * sack_delay - This parameter contains the number of milliseconds that |
| 4549 | * the user is requesting the delayed ACK timer be set to. Note that |
| 4550 | * this value is defined in the standard to be between 200 and 500 |
| 4551 | * milliseconds. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4552 | * |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4553 | * sack_freq - This parameter contains the number of packets that must |
| 4554 | * be received before a sack is sent without waiting for the delay |
| 4555 | * timer to expire. The default value for this is 2, setting this |
| 4556 | * value to 1 will disable the delayed sack algorithm. |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4557 | */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4558 | static int sctp_getsockopt_delayed_ack(struct sock *sk, int len, |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4559 | char __user *optval, |
| 4560 | int __user *optlen) |
| 4561 | { |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4562 | struct sctp_sack_info params; |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4563 | struct sctp_association *asoc = NULL; |
| 4564 | struct sctp_sock *sp = sctp_sk(sk); |
| 4565 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4566 | if (len >= sizeof(struct sctp_sack_info)) { |
| 4567 | len = sizeof(struct sctp_sack_info); |
| 4568 | |
| 4569 | if (copy_from_user(¶ms, optval, len)) |
| 4570 | return -EFAULT; |
| 4571 | } else if (len == sizeof(struct sctp_assoc_value)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 4572 | pr_warn("Use of struct sctp_assoc_value in delayed_ack socket option deprecated\n"); |
| 4573 | pr_warn("Use struct sctp_sack_info instead\n"); |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4574 | if (copy_from_user(¶ms, optval, len)) |
| 4575 | return -EFAULT; |
| 4576 | } else |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4577 | return - EINVAL; |
| 4578 | |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4579 | /* Get association, if sack_assoc_id != 0 and the socket is a one |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4580 | * to many style socket, and an association was not found, then |
| 4581 | * the id was invalid. |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 4582 | */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4583 | asoc = sctp_id2assoc(sk, params.sack_assoc_id); |
| 4584 | if (!asoc && params.sack_assoc_id && sctp_style(sk, UDP)) |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4585 | return -EINVAL; |
| 4586 | |
| 4587 | if (asoc) { |
| 4588 | /* Fetch association values. */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4589 | if (asoc->param_flags & SPP_SACKDELAY_ENABLE) { |
| 4590 | params.sack_delay = jiffies_to_msecs( |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4591 | asoc->sackdelay); |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4592 | params.sack_freq = asoc->sackfreq; |
| 4593 | |
| 4594 | } else { |
| 4595 | params.sack_delay = 0; |
| 4596 | params.sack_freq = 1; |
| 4597 | } |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4598 | } else { |
| 4599 | /* Fetch socket values. */ |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 4600 | if (sp->param_flags & SPP_SACKDELAY_ENABLE) { |
| 4601 | params.sack_delay = sp->sackdelay; |
| 4602 | params.sack_freq = sp->sackfreq; |
| 4603 | } else { |
| 4604 | params.sack_delay = 0; |
| 4605 | params.sack_freq = 1; |
| 4606 | } |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 4607 | } |
| 4608 | |
| 4609 | if (copy_to_user(optval, ¶ms, len)) |
| 4610 | return -EFAULT; |
| 4611 | |
| 4612 | if (put_user(len, optlen)) |
| 4613 | return -EFAULT; |
| 4614 | |
| 4615 | return 0; |
| 4616 | } |
| 4617 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | /* 7.1.3 Initialization Parameters (SCTP_INITMSG) |
| 4619 | * |
| 4620 | * Applications can specify protocol parameters for the default association |
| 4621 | * initialization. The option name argument to setsockopt() and getsockopt() |
| 4622 | * is SCTP_INITMSG. |
| 4623 | * |
| 4624 | * Setting initialization parameters is effective only on an unconnected |
| 4625 | * socket (for UDP-style sockets only future associations are effected |
| 4626 | * by the change). With TCP-style sockets, this option is inherited by |
| 4627 | * sockets derived from a listener socket. |
| 4628 | */ |
| 4629 | static int sctp_getsockopt_initmsg(struct sock *sk, int len, char __user *optval, int __user *optlen) |
| 4630 | { |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4631 | if (len < sizeof(struct sctp_initmsg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4632 | return -EINVAL; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4633 | len = sizeof(struct sctp_initmsg); |
| 4634 | if (put_user(len, optlen)) |
| 4635 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4636 | if (copy_to_user(optval, &sctp_sk(sk)->initmsg, len)) |
| 4637 | return -EFAULT; |
| 4638 | return 0; |
| 4639 | } |
| 4640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4641 | |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4642 | static int sctp_getsockopt_peer_addrs(struct sock *sk, int len, |
| 4643 | char __user *optval, int __user *optlen) |
| 4644 | { |
| 4645 | struct sctp_association *asoc; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4646 | int cnt = 0; |
| 4647 | struct sctp_getaddrs getaddrs; |
| 4648 | struct sctp_transport *from; |
| 4649 | void __user *to; |
| 4650 | union sctp_addr temp; |
| 4651 | struct sctp_sock *sp = sctp_sk(sk); |
| 4652 | int addrlen; |
| 4653 | size_t space_left; |
| 4654 | int bytes_copied; |
| 4655 | |
| 4656 | if (len < sizeof(struct sctp_getaddrs)) |
| 4657 | return -EINVAL; |
| 4658 | |
| 4659 | if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs))) |
| 4660 | return -EFAULT; |
| 4661 | |
| 4662 | /* For UDP-style sockets, id specifies the association to query. */ |
| 4663 | asoc = sctp_id2assoc(sk, getaddrs.assoc_id); |
| 4664 | if (!asoc) |
| 4665 | return -EINVAL; |
| 4666 | |
| 4667 | to = optval + offsetof(struct sctp_getaddrs,addrs); |
Neil Horman | 186e234 | 2007-06-18 19:59:16 -0400 | [diff] [blame] | 4668 | space_left = len - offsetof(struct sctp_getaddrs,addrs); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4669 | |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 4670 | list_for_each_entry(from, &asoc->peer.transport_addr_list, |
| 4671 | transports) { |
Al Viro | b3f5b3b | 2006-11-20 17:22:43 -0800 | [diff] [blame] | 4672 | memcpy(&temp, &from->ipaddr, sizeof(temp)); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4673 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp); |
Vlad Yasevich | a5f4cea | 2010-04-30 21:42:42 -0400 | [diff] [blame] | 4674 | addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len; |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4675 | if (space_left < addrlen) |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4676 | return -ENOMEM; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4677 | if (copy_to_user(to, &temp, addrlen)) |
| 4678 | return -EFAULT; |
| 4679 | to += addrlen; |
| 4680 | cnt++; |
| 4681 | space_left -= addrlen; |
| 4682 | } |
| 4683 | |
| 4684 | if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) |
| 4685 | return -EFAULT; |
| 4686 | bytes_copied = ((char __user *)to) - optval; |
| 4687 | if (put_user(bytes_copied, optlen)) |
| 4688 | return -EFAULT; |
| 4689 | |
| 4690 | return 0; |
| 4691 | } |
| 4692 | |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4693 | static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to, |
| 4694 | size_t space_left, int *bytes_copied) |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4695 | { |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4696 | struct sctp_sockaddr_entry *addr; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4697 | union sctp_addr temp; |
| 4698 | int cnt = 0; |
| 4699 | int addrlen; |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 4700 | struct net *net = sock_net(sk); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4701 | |
Vlad Yasevich | 2930354 | 2007-09-16 16:02:12 -0700 | [diff] [blame] | 4702 | rcu_read_lock(); |
Eric W. Biederman | 4db67e8 | 2012-08-06 08:42:04 +0000 | [diff] [blame] | 4703 | list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) { |
Vlad Yasevich | 2930354 | 2007-09-16 16:02:12 -0700 | [diff] [blame] | 4704 | if (!addr->valid) |
| 4705 | continue; |
| 4706 | |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 4707 | if ((PF_INET == sk->sk_family) && |
Al Viro | 6244be4 | 2006-11-20 17:21:44 -0800 | [diff] [blame] | 4708 | (AF_INET6 == addr->a.sa.sa_family)) |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4709 | continue; |
Vlad Yasevich | 7dab83d | 2008-07-18 23:05:40 -0700 | [diff] [blame] | 4710 | if ((PF_INET6 == sk->sk_family) && |
| 4711 | inet_v6_ipv6only(sk) && |
| 4712 | (AF_INET == addr->a.sa.sa_family)) |
| 4713 | continue; |
Al Viro | 6244be4 | 2006-11-20 17:21:44 -0800 | [diff] [blame] | 4714 | memcpy(&temp, &addr->a, sizeof(temp)); |
Vlad Yasevich | b46ae36 | 2008-01-28 14:25:36 -0500 | [diff] [blame] | 4715 | if (!temp.v4.sin_port) |
| 4716 | temp.v4.sin_port = htons(port); |
| 4717 | |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4718 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sctp_sk(sk), |
| 4719 | &temp); |
| 4720 | addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len; |
Vlad Yasevich | 2930354 | 2007-09-16 16:02:12 -0700 | [diff] [blame] | 4721 | if (space_left < addrlen) { |
| 4722 | cnt = -ENOMEM; |
| 4723 | break; |
| 4724 | } |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4725 | memcpy(to, &temp, addrlen); |
Sridhar Samudrala | 29c7cf9 | 2006-12-13 16:26:26 -0800 | [diff] [blame] | 4726 | |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4727 | to += addrlen; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4728 | cnt ++; |
| 4729 | space_left -= addrlen; |
Vlad Yasevich | 3663c30 | 2007-07-03 12:43:12 -0400 | [diff] [blame] | 4730 | *bytes_copied += addrlen; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4731 | } |
Vlad Yasevich | 2930354 | 2007-09-16 16:02:12 -0700 | [diff] [blame] | 4732 | rcu_read_unlock(); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4733 | |
| 4734 | return cnt; |
| 4735 | } |
| 4736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4738 | static int sctp_getsockopt_local_addrs(struct sock *sk, int len, |
| 4739 | char __user *optval, int __user *optlen) |
| 4740 | { |
| 4741 | struct sctp_bind_addr *bp; |
| 4742 | struct sctp_association *asoc; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4743 | int cnt = 0; |
| 4744 | struct sctp_getaddrs getaddrs; |
| 4745 | struct sctp_sockaddr_entry *addr; |
| 4746 | void __user *to; |
| 4747 | union sctp_addr temp; |
| 4748 | struct sctp_sock *sp = sctp_sk(sk); |
| 4749 | int addrlen; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4750 | int err = 0; |
| 4751 | size_t space_left; |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4752 | int bytes_copied = 0; |
| 4753 | void *addrs; |
Vlad Yasevich | 70b57b8 | 2007-05-09 13:51:31 -0700 | [diff] [blame] | 4754 | void *buf; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4755 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4756 | if (len < sizeof(struct sctp_getaddrs)) |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4757 | return -EINVAL; |
| 4758 | |
| 4759 | if (copy_from_user(&getaddrs, optval, sizeof(struct sctp_getaddrs))) |
| 4760 | return -EFAULT; |
| 4761 | |
| 4762 | /* |
| 4763 | * For UDP-style sockets, id specifies the association to query. |
| 4764 | * If the id field is set to the value '0' then the locally bound |
| 4765 | * addresses are returned without regard to any particular |
| 4766 | * association. |
| 4767 | */ |
| 4768 | if (0 == getaddrs.assoc_id) { |
| 4769 | bp = &sctp_sk(sk)->ep->base.bind_addr; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4770 | } else { |
| 4771 | asoc = sctp_id2assoc(sk, getaddrs.assoc_id); |
| 4772 | if (!asoc) |
| 4773 | return -EINVAL; |
| 4774 | bp = &asoc->base.bind_addr; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4775 | } |
| 4776 | |
| 4777 | to = optval + offsetof(struct sctp_getaddrs,addrs); |
Neil Horman | 186e234 | 2007-06-18 19:59:16 -0400 | [diff] [blame] | 4778 | space_left = len - offsetof(struct sctp_getaddrs,addrs); |
| 4779 | |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4780 | addrs = kmalloc(space_left, GFP_KERNEL); |
| 4781 | if (!addrs) |
| 4782 | return -ENOMEM; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4783 | |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4784 | /* If the endpoint is bound to 0.0.0.0 or ::0, get the valid |
| 4785 | * addresses from the global local address list. |
| 4786 | */ |
| 4787 | if (sctp_list_single_entry(&bp->address_list)) { |
| 4788 | addr = list_entry(bp->address_list.next, |
| 4789 | struct sctp_sockaddr_entry, list); |
Vlad Yasevich | 52cae8f | 2008-08-18 10:34:34 -0400 | [diff] [blame] | 4790 | if (sctp_is_any(sk, &addr->a)) { |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4791 | cnt = sctp_copy_laddrs(sk, bp->port, addrs, |
| 4792 | space_left, &bytes_copied); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4793 | if (cnt < 0) { |
| 4794 | err = cnt; |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 4795 | goto out; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4796 | } |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 4797 | goto copy_getaddrs; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4798 | } |
| 4799 | } |
| 4800 | |
Vlad Yasevich | 70b57b8 | 2007-05-09 13:51:31 -0700 | [diff] [blame] | 4801 | buf = addrs; |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 4802 | /* Protection on the bound address list is not needed since |
| 4803 | * in the socket option context we hold a socket lock and |
| 4804 | * thus the bound address list can't change. |
| 4805 | */ |
| 4806 | list_for_each_entry(addr, &bp->address_list, list) { |
Al Viro | 6244be4 | 2006-11-20 17:21:44 -0800 | [diff] [blame] | 4807 | memcpy(&temp, &addr->a, sizeof(temp)); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4808 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, &temp); |
| 4809 | addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len; |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4810 | if (space_left < addrlen) { |
| 4811 | err = -ENOMEM; /*fixme: right error?*/ |
Vlad Yasevich | 559cf71 | 2007-09-16 16:03:28 -0700 | [diff] [blame] | 4812 | goto out; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4813 | } |
Vlad Yasevich | 70b57b8 | 2007-05-09 13:51:31 -0700 | [diff] [blame] | 4814 | memcpy(buf, &temp, addrlen); |
| 4815 | buf += addrlen; |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4816 | bytes_copied += addrlen; |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4817 | cnt ++; |
| 4818 | space_left -= addrlen; |
| 4819 | } |
| 4820 | |
| 4821 | copy_getaddrs: |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4822 | if (copy_to_user(to, addrs, bytes_copied)) { |
| 4823 | err = -EFAULT; |
Sebastian Siewior | d6f9fda | 2007-07-27 22:55:59 +0200 | [diff] [blame] | 4824 | goto out; |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4825 | } |
Vlad Yasevich | fe979ac | 2007-05-23 11:11:37 -0400 | [diff] [blame] | 4826 | if (put_user(cnt, &((struct sctp_getaddrs __user *)optval)->addr_num)) { |
| 4827 | err = -EFAULT; |
Sebastian Siewior | d6f9fda | 2007-07-27 22:55:59 +0200 | [diff] [blame] | 4828 | goto out; |
Vlad Yasevich | fe979ac | 2007-05-23 11:11:37 -0400 | [diff] [blame] | 4829 | } |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4830 | if (put_user(bytes_copied, optlen)) |
Vlad Yasevich | fe979ac | 2007-05-23 11:11:37 -0400 | [diff] [blame] | 4831 | err = -EFAULT; |
Sebastian Siewior | d6f9fda | 2007-07-27 22:55:59 +0200 | [diff] [blame] | 4832 | out: |
Vlad Yasevich | aad97f3 | 2007-04-28 21:09:04 -0700 | [diff] [blame] | 4833 | kfree(addrs); |
Ivan Skytte Jørgensen | 5fe467e | 2005-10-06 21:36:17 -0700 | [diff] [blame] | 4834 | return err; |
| 4835 | } |
| 4836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4837 | /* 7.1.10 Set Primary Address (SCTP_PRIMARY_ADDR) |
| 4838 | * |
| 4839 | * Requests that the local SCTP stack use the enclosed peer address as |
| 4840 | * the association primary. The enclosed address must be one of the |
| 4841 | * association peer's addresses. |
| 4842 | */ |
| 4843 | static int sctp_getsockopt_primary_addr(struct sock *sk, int len, |
| 4844 | char __user *optval, int __user *optlen) |
| 4845 | { |
| 4846 | struct sctp_prim prim; |
| 4847 | struct sctp_association *asoc; |
| 4848 | struct sctp_sock *sp = sctp_sk(sk); |
| 4849 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4850 | if (len < sizeof(struct sctp_prim)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4851 | return -EINVAL; |
| 4852 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4853 | len = sizeof(struct sctp_prim); |
| 4854 | |
| 4855 | if (copy_from_user(&prim, optval, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | return -EFAULT; |
| 4857 | |
| 4858 | asoc = sctp_id2assoc(sk, prim.ssp_assoc_id); |
| 4859 | if (!asoc) |
| 4860 | return -EINVAL; |
| 4861 | |
| 4862 | if (!asoc->peer.primary_path) |
| 4863 | return -ENOTCONN; |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 4864 | |
Al Viro | 8cec6b8 | 2006-11-20 17:23:01 -0800 | [diff] [blame] | 4865 | memcpy(&prim.ssp_addr, &asoc->peer.primary_path->ipaddr, |
| 4866 | asoc->peer.primary_path->af_specific->sockaddr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4867 | |
| 4868 | sctp_get_pf_specific(sk->sk_family)->addr_v4map(sp, |
| 4869 | (union sctp_addr *)&prim.ssp_addr); |
| 4870 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4871 | if (put_user(len, optlen)) |
| 4872 | return -EFAULT; |
| 4873 | if (copy_to_user(optval, &prim, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4874 | return -EFAULT; |
| 4875 | |
| 4876 | return 0; |
| 4877 | } |
| 4878 | |
| 4879 | /* |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4880 | * 7.1.11 Set Adaptation Layer Indicator (SCTP_ADAPTATION_LAYER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | * |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4882 | * Requests that the local endpoint set the specified Adaptation Layer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4883 | * Indication parameter for all future INIT and INIT-ACK exchanges. |
| 4884 | */ |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4885 | static int sctp_getsockopt_adaptation_layer(struct sock *sk, int len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4886 | char __user *optval, int __user *optlen) |
| 4887 | { |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4888 | struct sctp_setadaptation adaptation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4890 | if (len < sizeof(struct sctp_setadaptation)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | return -EINVAL; |
| 4892 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4893 | len = sizeof(struct sctp_setadaptation); |
| 4894 | |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4895 | adaptation.ssb_adaptation_ind = sctp_sk(sk)->adaptation_ind; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4896 | |
| 4897 | if (put_user(len, optlen)) |
| 4898 | return -EFAULT; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 4899 | if (copy_to_user(optval, &adaptation, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4900 | return -EFAULT; |
Ivan Skytte Jorgensen | a1ab358 | 2005-10-28 15:33:24 -0700 | [diff] [blame] | 4901 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4902 | return 0; |
| 4903 | } |
| 4904 | |
| 4905 | /* |
| 4906 | * |
| 4907 | * 7.1.14 Set default send parameters (SCTP_DEFAULT_SEND_PARAM) |
| 4908 | * |
| 4909 | * Applications that wish to use the sendto() system call may wish to |
| 4910 | * specify a default set of parameters that would normally be supplied |
| 4911 | * through the inclusion of ancillary data. This socket option allows |
| 4912 | * such an application to set the default sctp_sndrcvinfo structure. |
| 4913 | |
| 4914 | |
| 4915 | * The application that wishes to use this socket option simply passes |
| 4916 | * in to this call the sctp_sndrcvinfo structure defined in Section |
| 4917 | * 5.2.2) The input parameters accepted by this call include |
| 4918 | * sinfo_stream, sinfo_flags, sinfo_ppid, sinfo_context, |
| 4919 | * sinfo_timetolive. The user must provide the sinfo_assoc_id field in |
| 4920 | * to this call if the caller is using the UDP model. |
| 4921 | * |
| 4922 | * For getsockopt, it get the default sctp_sndrcvinfo structure. |
| 4923 | */ |
| 4924 | static int sctp_getsockopt_default_send_param(struct sock *sk, |
| 4925 | int len, char __user *optval, |
| 4926 | int __user *optlen) |
| 4927 | { |
| 4928 | struct sctp_sndrcvinfo info; |
| 4929 | struct sctp_association *asoc; |
| 4930 | struct sctp_sock *sp = sctp_sk(sk); |
| 4931 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4932 | if (len < sizeof(struct sctp_sndrcvinfo)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4933 | return -EINVAL; |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4934 | |
| 4935 | len = sizeof(struct sctp_sndrcvinfo); |
| 4936 | |
| 4937 | if (copy_from_user(&info, optval, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4938 | return -EFAULT; |
| 4939 | |
| 4940 | asoc = sctp_id2assoc(sk, info.sinfo_assoc_id); |
| 4941 | if (!asoc && info.sinfo_assoc_id && sctp_style(sk, UDP)) |
| 4942 | return -EINVAL; |
| 4943 | |
| 4944 | if (asoc) { |
| 4945 | info.sinfo_stream = asoc->default_stream; |
| 4946 | info.sinfo_flags = asoc->default_flags; |
| 4947 | info.sinfo_ppid = asoc->default_ppid; |
| 4948 | info.sinfo_context = asoc->default_context; |
| 4949 | info.sinfo_timetolive = asoc->default_timetolive; |
| 4950 | } else { |
| 4951 | info.sinfo_stream = sp->default_stream; |
| 4952 | info.sinfo_flags = sp->default_flags; |
| 4953 | info.sinfo_ppid = sp->default_ppid; |
| 4954 | info.sinfo_context = sp->default_context; |
| 4955 | info.sinfo_timetolive = sp->default_timetolive; |
| 4956 | } |
| 4957 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 4958 | if (put_user(len, optlen)) |
| 4959 | return -EFAULT; |
| 4960 | if (copy_to_user(optval, &info, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | return -EFAULT; |
| 4962 | |
| 4963 | return 0; |
| 4964 | } |
| 4965 | |
| 4966 | /* |
| 4967 | * |
| 4968 | * 7.1.5 SCTP_NODELAY |
| 4969 | * |
| 4970 | * Turn on/off any Nagle-like algorithm. This means that packets are |
| 4971 | * generally sent as soon as possible and no unnecessary delays are |
| 4972 | * introduced, at the cost of more packets in the network. Expects an |
| 4973 | * integer boolean flag. |
| 4974 | */ |
| 4975 | |
| 4976 | static int sctp_getsockopt_nodelay(struct sock *sk, int len, |
| 4977 | char __user *optval, int __user *optlen) |
| 4978 | { |
| 4979 | int val; |
| 4980 | |
| 4981 | if (len < sizeof(int)) |
| 4982 | return -EINVAL; |
| 4983 | |
| 4984 | len = sizeof(int); |
| 4985 | val = (sctp_sk(sk)->nodelay == 1); |
| 4986 | if (put_user(len, optlen)) |
| 4987 | return -EFAULT; |
| 4988 | if (copy_to_user(optval, &val, len)) |
| 4989 | return -EFAULT; |
| 4990 | return 0; |
| 4991 | } |
| 4992 | |
| 4993 | /* |
| 4994 | * |
| 4995 | * 7.1.1 SCTP_RTOINFO |
| 4996 | * |
| 4997 | * The protocol parameters used to initialize and bound retransmission |
| 4998 | * timeout (RTO) are tunable. sctp_rtoinfo structure is used to access |
| 4999 | * and modify these parameters. |
| 5000 | * All parameters are time values, in milliseconds. A value of 0, when |
| 5001 | * modifying the parameters, indicates that the current value should not |
| 5002 | * be changed. |
| 5003 | * |
| 5004 | */ |
| 5005 | static int sctp_getsockopt_rtoinfo(struct sock *sk, int len, |
| 5006 | char __user *optval, |
| 5007 | int __user *optlen) { |
| 5008 | struct sctp_rtoinfo rtoinfo; |
| 5009 | struct sctp_association *asoc; |
| 5010 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5011 | if (len < sizeof (struct sctp_rtoinfo)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5012 | return -EINVAL; |
| 5013 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5014 | len = sizeof(struct sctp_rtoinfo); |
| 5015 | |
| 5016 | if (copy_from_user(&rtoinfo, optval, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5017 | return -EFAULT; |
| 5018 | |
| 5019 | asoc = sctp_id2assoc(sk, rtoinfo.srto_assoc_id); |
| 5020 | |
| 5021 | if (!asoc && rtoinfo.srto_assoc_id && sctp_style(sk, UDP)) |
| 5022 | return -EINVAL; |
| 5023 | |
| 5024 | /* Values corresponding to the specific association. */ |
| 5025 | if (asoc) { |
| 5026 | rtoinfo.srto_initial = jiffies_to_msecs(asoc->rto_initial); |
| 5027 | rtoinfo.srto_max = jiffies_to_msecs(asoc->rto_max); |
| 5028 | rtoinfo.srto_min = jiffies_to_msecs(asoc->rto_min); |
| 5029 | } else { |
| 5030 | /* Values corresponding to the endpoint. */ |
| 5031 | struct sctp_sock *sp = sctp_sk(sk); |
| 5032 | |
| 5033 | rtoinfo.srto_initial = sp->rtoinfo.srto_initial; |
| 5034 | rtoinfo.srto_max = sp->rtoinfo.srto_max; |
| 5035 | rtoinfo.srto_min = sp->rtoinfo.srto_min; |
| 5036 | } |
| 5037 | |
| 5038 | if (put_user(len, optlen)) |
| 5039 | return -EFAULT; |
| 5040 | |
| 5041 | if (copy_to_user(optval, &rtoinfo, len)) |
| 5042 | return -EFAULT; |
| 5043 | |
| 5044 | return 0; |
| 5045 | } |
| 5046 | |
| 5047 | /* |
| 5048 | * |
| 5049 | * 7.1.2 SCTP_ASSOCINFO |
| 5050 | * |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 5051 | * This option is used to tune the maximum retransmission attempts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5052 | * of the association. |
| 5053 | * Returns an error if the new association retransmission value is |
| 5054 | * greater than the sum of the retransmission value of the peer. |
| 5055 | * See [SCTP] for more information. |
| 5056 | * |
| 5057 | */ |
| 5058 | static int sctp_getsockopt_associnfo(struct sock *sk, int len, |
| 5059 | char __user *optval, |
| 5060 | int __user *optlen) |
| 5061 | { |
| 5062 | |
| 5063 | struct sctp_assocparams assocparams; |
| 5064 | struct sctp_association *asoc; |
| 5065 | struct list_head *pos; |
| 5066 | int cnt = 0; |
| 5067 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5068 | if (len < sizeof (struct sctp_assocparams)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5069 | return -EINVAL; |
| 5070 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5071 | len = sizeof(struct sctp_assocparams); |
| 5072 | |
| 5073 | if (copy_from_user(&assocparams, optval, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5074 | return -EFAULT; |
| 5075 | |
| 5076 | asoc = sctp_id2assoc(sk, assocparams.sasoc_assoc_id); |
| 5077 | |
| 5078 | if (!asoc && assocparams.sasoc_assoc_id && sctp_style(sk, UDP)) |
| 5079 | return -EINVAL; |
| 5080 | |
| 5081 | /* Values correspoinding to the specific association */ |
Vladislav Yasevich | 1733721 | 2005-04-28 11:57:54 -0700 | [diff] [blame] | 5082 | if (asoc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5083 | assocparams.sasoc_asocmaxrxt = asoc->max_retrans; |
| 5084 | assocparams.sasoc_peer_rwnd = asoc->peer.rwnd; |
| 5085 | assocparams.sasoc_local_rwnd = asoc->a_rwnd; |
Daniel Borkmann | 52db882 | 2013-06-25 18:17:27 +0200 | [diff] [blame] | 5086 | assocparams.sasoc_cookie_life = ktime_to_ms(asoc->cookie_life); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5087 | |
| 5088 | list_for_each(pos, &asoc->peer.transport_addr_list) { |
| 5089 | cnt ++; |
| 5090 | } |
| 5091 | |
| 5092 | assocparams.sasoc_number_peer_destinations = cnt; |
| 5093 | } else { |
| 5094 | /* Values corresponding to the endpoint */ |
| 5095 | struct sctp_sock *sp = sctp_sk(sk); |
| 5096 | |
| 5097 | assocparams.sasoc_asocmaxrxt = sp->assocparams.sasoc_asocmaxrxt; |
| 5098 | assocparams.sasoc_peer_rwnd = sp->assocparams.sasoc_peer_rwnd; |
| 5099 | assocparams.sasoc_local_rwnd = sp->assocparams.sasoc_local_rwnd; |
| 5100 | assocparams.sasoc_cookie_life = |
| 5101 | sp->assocparams.sasoc_cookie_life; |
| 5102 | assocparams.sasoc_number_peer_destinations = |
| 5103 | sp->assocparams. |
| 5104 | sasoc_number_peer_destinations; |
| 5105 | } |
| 5106 | |
| 5107 | if (put_user(len, optlen)) |
| 5108 | return -EFAULT; |
| 5109 | |
| 5110 | if (copy_to_user(optval, &assocparams, len)) |
| 5111 | return -EFAULT; |
| 5112 | |
| 5113 | return 0; |
| 5114 | } |
| 5115 | |
| 5116 | /* |
| 5117 | * 7.1.16 Set/clear IPv4 mapped addresses (SCTP_I_WANT_MAPPED_V4_ADDR) |
| 5118 | * |
| 5119 | * This socket option is a boolean flag which turns on or off mapped V4 |
| 5120 | * addresses. If this option is turned on and the socket is type |
| 5121 | * PF_INET6, then IPv4 addresses will be mapped to V6 representation. |
| 5122 | * If this option is turned off, then no mapping will be done of V4 |
| 5123 | * addresses and a user will receive both PF_INET6 and PF_INET type |
| 5124 | * addresses on the socket. |
| 5125 | */ |
| 5126 | static int sctp_getsockopt_mappedv4(struct sock *sk, int len, |
| 5127 | char __user *optval, int __user *optlen) |
| 5128 | { |
| 5129 | int val; |
| 5130 | struct sctp_sock *sp = sctp_sk(sk); |
| 5131 | |
| 5132 | if (len < sizeof(int)) |
| 5133 | return -EINVAL; |
| 5134 | |
| 5135 | len = sizeof(int); |
| 5136 | val = sp->v4mapped; |
| 5137 | if (put_user(len, optlen)) |
| 5138 | return -EFAULT; |
| 5139 | if (copy_to_user(optval, &val, len)) |
| 5140 | return -EFAULT; |
| 5141 | |
| 5142 | return 0; |
| 5143 | } |
| 5144 | |
| 5145 | /* |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 5146 | * 7.1.29. Set or Get the default context (SCTP_CONTEXT) |
| 5147 | * (chapter and verse is quoted at sctp_setsockopt_context()) |
| 5148 | */ |
| 5149 | static int sctp_getsockopt_context(struct sock *sk, int len, |
| 5150 | char __user *optval, int __user *optlen) |
| 5151 | { |
| 5152 | struct sctp_assoc_value params; |
| 5153 | struct sctp_sock *sp; |
| 5154 | struct sctp_association *asoc; |
| 5155 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5156 | if (len < sizeof(struct sctp_assoc_value)) |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 5157 | return -EINVAL; |
| 5158 | |
Neil Horman | 408f22e | 2007-06-16 14:03:45 -0400 | [diff] [blame] | 5159 | len = sizeof(struct sctp_assoc_value); |
| 5160 | |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 5161 | if (copy_from_user(¶ms, optval, len)) |
| 5162 | return -EFAULT; |
| 5163 | |
| 5164 | sp = sctp_sk(sk); |
| 5165 | |
| 5166 | if (params.assoc_id != 0) { |
| 5167 | asoc = sctp_id2assoc(sk, params.assoc_id); |
| 5168 | if (!asoc) |
| 5169 | return -EINVAL; |
| 5170 | params.assoc_value = asoc->default_rcv_context; |
| 5171 | } else { |
| 5172 | params.assoc_value = sp->default_rcv_context; |
| 5173 | } |
| 5174 | |
| 5175 | if (put_user(len, optlen)) |
| 5176 | return -EFAULT; |
| 5177 | if (copy_to_user(optval, ¶ms, len)) |
| 5178 | return -EFAULT; |
| 5179 | |
| 5180 | return 0; |
| 5181 | } |
| 5182 | |
| 5183 | /* |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5184 | * 8.1.16. Get or Set the Maximum Fragmentation Size (SCTP_MAXSEG) |
| 5185 | * This option will get or set the maximum size to put in any outgoing |
| 5186 | * SCTP DATA chunk. If a message is larger than this size it will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5187 | * fragmented by SCTP into the specified size. Note that the underlying |
| 5188 | * SCTP implementation may fragment into smaller sized chunks when the |
| 5189 | * PMTU of the underlying association is smaller than the value set by |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5190 | * the user. The default value for this option is '0' which indicates |
| 5191 | * the user is NOT limiting fragmentation and only the PMTU will effect |
| 5192 | * SCTP's choice of DATA chunk size. Note also that values set larger |
| 5193 | * than the maximum size of an IP datagram will effectively let SCTP |
| 5194 | * control fragmentation (i.e. the same as setting this option to 0). |
| 5195 | * |
| 5196 | * The following structure is used to access and modify this parameter: |
| 5197 | * |
| 5198 | * struct sctp_assoc_value { |
| 5199 | * sctp_assoc_t assoc_id; |
| 5200 | * uint32_t assoc_value; |
| 5201 | * }; |
| 5202 | * |
| 5203 | * assoc_id: This parameter is ignored for one-to-one style sockets. |
| 5204 | * For one-to-many style sockets this parameter indicates which |
| 5205 | * association the user is performing an action upon. Note that if |
| 5206 | * this field's value is zero then the endpoints default value is |
| 5207 | * changed (effecting future associations only). |
| 5208 | * assoc_value: This parameter specifies the maximum size in bytes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5209 | */ |
| 5210 | static int sctp_getsockopt_maxseg(struct sock *sk, int len, |
| 5211 | char __user *optval, int __user *optlen) |
| 5212 | { |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5213 | struct sctp_assoc_value params; |
| 5214 | struct sctp_association *asoc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5215 | |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5216 | if (len == sizeof(int)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 5217 | pr_warn("Use of int in maxseg socket option deprecated\n"); |
| 5218 | pr_warn("Use struct sctp_assoc_value instead\n"); |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5219 | params.assoc_id = 0; |
| 5220 | } else if (len >= sizeof(struct sctp_assoc_value)) { |
| 5221 | len = sizeof(struct sctp_assoc_value); |
| 5222 | if (copy_from_user(¶ms, optval, sizeof(params))) |
| 5223 | return -EFAULT; |
| 5224 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5225 | return -EINVAL; |
| 5226 | |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5227 | asoc = sctp_id2assoc(sk, params.assoc_id); |
| 5228 | if (!asoc && params.assoc_id && sctp_style(sk, UDP)) |
| 5229 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5230 | |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5231 | if (asoc) |
| 5232 | params.assoc_value = asoc->frag_point; |
| 5233 | else |
| 5234 | params.assoc_value = sctp_sk(sk)->user_frag; |
| 5235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | if (put_user(len, optlen)) |
| 5237 | return -EFAULT; |
Wei Yongjun | e89c209 | 2008-12-25 16:54:58 -0800 | [diff] [blame] | 5238 | if (len == sizeof(int)) { |
| 5239 | if (copy_to_user(optval, ¶ms.assoc_value, len)) |
| 5240 | return -EFAULT; |
| 5241 | } else { |
| 5242 | if (copy_to_user(optval, ¶ms, len)) |
| 5243 | return -EFAULT; |
| 5244 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5245 | |
| 5246 | return 0; |
| 5247 | } |
| 5248 | |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 5249 | /* |
| 5250 | * 7.1.24. Get or set fragmented interleave (SCTP_FRAGMENT_INTERLEAVE) |
| 5251 | * (chapter and verse is quoted at sctp_setsockopt_fragment_interleave()) |
| 5252 | */ |
| 5253 | static int sctp_getsockopt_fragment_interleave(struct sock *sk, int len, |
| 5254 | char __user *optval, int __user *optlen) |
| 5255 | { |
| 5256 | int val; |
| 5257 | |
| 5258 | if (len < sizeof(int)) |
| 5259 | return -EINVAL; |
| 5260 | |
| 5261 | len = sizeof(int); |
| 5262 | |
| 5263 | val = sctp_sk(sk)->frag_interleave; |
| 5264 | if (put_user(len, optlen)) |
| 5265 | return -EFAULT; |
| 5266 | if (copy_to_user(optval, &val, len)) |
| 5267 | return -EFAULT; |
| 5268 | |
| 5269 | return 0; |
| 5270 | } |
| 5271 | |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 5272 | /* |
| 5273 | * 7.1.25. Set or Get the sctp partial delivery point |
| 5274 | * (chapter and verse is quoted at sctp_setsockopt_partial_delivery_point()) |
| 5275 | */ |
| 5276 | static int sctp_getsockopt_partial_delivery_point(struct sock *sk, int len, |
| 5277 | char __user *optval, |
| 5278 | int __user *optlen) |
| 5279 | { |
YOSHIFUJI Hideaki | 9cbcbf4 | 2007-07-19 10:44:50 +0900 | [diff] [blame] | 5280 | u32 val; |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 5281 | |
| 5282 | if (len < sizeof(u32)) |
| 5283 | return -EINVAL; |
| 5284 | |
| 5285 | len = sizeof(u32); |
| 5286 | |
| 5287 | val = sctp_sk(sk)->pd_point; |
| 5288 | if (put_user(len, optlen)) |
| 5289 | return -EFAULT; |
| 5290 | if (copy_to_user(optval, &val, len)) |
| 5291 | return -EFAULT; |
| 5292 | |
Wei Yongjun | 7d743b7 | 2010-12-14 16:10:41 +0000 | [diff] [blame] | 5293 | return 0; |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 5294 | } |
| 5295 | |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5296 | /* |
| 5297 | * 7.1.28. Set or Get the maximum burst (SCTP_MAX_BURST) |
| 5298 | * (chapter and verse is quoted at sctp_setsockopt_maxburst()) |
| 5299 | */ |
| 5300 | static int sctp_getsockopt_maxburst(struct sock *sk, int len, |
| 5301 | char __user *optval, |
| 5302 | int __user *optlen) |
| 5303 | { |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5304 | struct sctp_assoc_value params; |
| 5305 | struct sctp_sock *sp; |
| 5306 | struct sctp_association *asoc; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5307 | |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5308 | if (len == sizeof(int)) { |
Joe Perches | 145ce50 | 2010-08-24 13:21:08 +0000 | [diff] [blame] | 5309 | pr_warn("Use of int in max_burst socket option deprecated\n"); |
| 5310 | pr_warn("Use struct sctp_assoc_value instead\n"); |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5311 | params.assoc_id = 0; |
Wei Yongjun | c6db93a | 2009-03-02 09:46:12 +0000 | [diff] [blame] | 5312 | } else if (len >= sizeof(struct sctp_assoc_value)) { |
| 5313 | len = sizeof(struct sctp_assoc_value); |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5314 | if (copy_from_user(¶ms, optval, len)) |
| 5315 | return -EFAULT; |
| 5316 | } else |
| 5317 | return -EINVAL; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5318 | |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5319 | sp = sctp_sk(sk); |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5320 | |
Neil Horman | 219b99a | 2008-03-05 13:44:46 -0800 | [diff] [blame] | 5321 | if (params.assoc_id != 0) { |
| 5322 | asoc = sctp_id2assoc(sk, params.assoc_id); |
| 5323 | if (!asoc) |
| 5324 | return -EINVAL; |
| 5325 | params.assoc_value = asoc->max_burst; |
| 5326 | } else |
| 5327 | params.assoc_value = sp->max_burst; |
| 5328 | |
| 5329 | if (len == sizeof(int)) { |
| 5330 | if (copy_to_user(optval, ¶ms.assoc_value, len)) |
| 5331 | return -EFAULT; |
| 5332 | } else { |
| 5333 | if (copy_to_user(optval, ¶ms, len)) |
| 5334 | return -EFAULT; |
| 5335 | } |
| 5336 | |
| 5337 | return 0; |
| 5338 | |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5339 | } |
| 5340 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5341 | static int sctp_getsockopt_hmac_ident(struct sock *sk, int len, |
| 5342 | char __user *optval, int __user *optlen) |
| 5343 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5344 | struct net *net = sock_net(sk); |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5345 | struct sctp_hmacalgo __user *p = (void __user *)optval; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5346 | struct sctp_hmac_algo_param *hmacs; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5347 | __u16 data_len = 0; |
| 5348 | u32 num_idents; |
| 5349 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5350 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5351 | return -EACCES; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5352 | |
| 5353 | hmacs = sctp_sk(sk)->ep->auth_hmacs_list; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5354 | data_len = ntohs(hmacs->param_hdr.length) - sizeof(sctp_paramhdr_t); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5355 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5356 | if (len < sizeof(struct sctp_hmacalgo) + data_len) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5357 | return -EINVAL; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5358 | |
| 5359 | len = sizeof(struct sctp_hmacalgo) + data_len; |
| 5360 | num_idents = data_len / sizeof(u16); |
| 5361 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5362 | if (put_user(len, optlen)) |
| 5363 | return -EFAULT; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5364 | if (put_user(num_idents, &p->shmac_num_idents)) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5365 | return -EFAULT; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5366 | if (copy_to_user(p->shmac_idents, hmacs->hmac_ids, data_len)) |
| 5367 | return -EFAULT; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5368 | return 0; |
| 5369 | } |
| 5370 | |
| 5371 | static int sctp_getsockopt_active_key(struct sock *sk, int len, |
| 5372 | char __user *optval, int __user *optlen) |
| 5373 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5374 | struct net *net = sock_net(sk); |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5375 | struct sctp_authkeyid val; |
| 5376 | struct sctp_association *asoc; |
| 5377 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5378 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5379 | return -EACCES; |
| 5380 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5381 | if (len < sizeof(struct sctp_authkeyid)) |
| 5382 | return -EINVAL; |
| 5383 | if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid))) |
| 5384 | return -EFAULT; |
| 5385 | |
| 5386 | asoc = sctp_id2assoc(sk, val.scact_assoc_id); |
| 5387 | if (!asoc && val.scact_assoc_id && sctp_style(sk, UDP)) |
| 5388 | return -EINVAL; |
| 5389 | |
| 5390 | if (asoc) |
| 5391 | val.scact_keynumber = asoc->active_key_id; |
| 5392 | else |
| 5393 | val.scact_keynumber = sctp_sk(sk)->ep->active_key_id; |
| 5394 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5395 | len = sizeof(struct sctp_authkeyid); |
| 5396 | if (put_user(len, optlen)) |
| 5397 | return -EFAULT; |
| 5398 | if (copy_to_user(optval, &val, len)) |
| 5399 | return -EFAULT; |
| 5400 | |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5401 | return 0; |
| 5402 | } |
| 5403 | |
| 5404 | static int sctp_getsockopt_peer_auth_chunks(struct sock *sk, int len, |
| 5405 | char __user *optval, int __user *optlen) |
| 5406 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5407 | struct net *net = sock_net(sk); |
Al Viro | 411223c | 2007-10-14 19:21:20 +0100 | [diff] [blame] | 5408 | struct sctp_authchunks __user *p = (void __user *)optval; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5409 | struct sctp_authchunks val; |
| 5410 | struct sctp_association *asoc; |
| 5411 | struct sctp_chunks_param *ch; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5412 | u32 num_chunks = 0; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5413 | char __user *to; |
| 5414 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5415 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5416 | return -EACCES; |
| 5417 | |
| 5418 | if (len < sizeof(struct sctp_authchunks)) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5419 | return -EINVAL; |
| 5420 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5421 | if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks))) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5422 | return -EFAULT; |
| 5423 | |
Al Viro | 411223c | 2007-10-14 19:21:20 +0100 | [diff] [blame] | 5424 | to = p->gauth_chunks; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5425 | asoc = sctp_id2assoc(sk, val.gauth_assoc_id); |
| 5426 | if (!asoc) |
| 5427 | return -EINVAL; |
| 5428 | |
| 5429 | ch = asoc->peer.peer_chunks; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5430 | if (!ch) |
| 5431 | goto num; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5432 | |
| 5433 | /* See if the user provided enough room for all the data */ |
Vlad Yasevich | b40db68 | 2008-02-27 14:40:37 -0500 | [diff] [blame] | 5434 | num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t); |
| 5435 | if (len < num_chunks) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5436 | return -EINVAL; |
| 5437 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5438 | if (copy_to_user(to, ch->chunks, num_chunks)) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5439 | return -EFAULT; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5440 | num: |
| 5441 | len = sizeof(struct sctp_authchunks) + num_chunks; |
| 5442 | if (put_user(len, optlen)) return -EFAULT; |
Vlad Yasevich | 7e8616d | 2008-02-27 16:04:52 -0500 | [diff] [blame] | 5443 | if (put_user(num_chunks, &p->gauth_number_of_chunks)) |
| 5444 | return -EFAULT; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5445 | return 0; |
| 5446 | } |
| 5447 | |
| 5448 | static int sctp_getsockopt_local_auth_chunks(struct sock *sk, int len, |
| 5449 | char __user *optval, int __user *optlen) |
| 5450 | { |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5451 | struct net *net = sock_net(sk); |
Al Viro | 411223c | 2007-10-14 19:21:20 +0100 | [diff] [blame] | 5452 | struct sctp_authchunks __user *p = (void __user *)optval; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5453 | struct sctp_authchunks val; |
| 5454 | struct sctp_association *asoc; |
| 5455 | struct sctp_chunks_param *ch; |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5456 | u32 num_chunks = 0; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5457 | char __user *to; |
| 5458 | |
Eric W. Biederman | e1fc3b1 | 2012-08-07 07:29:57 +0000 | [diff] [blame] | 5459 | if (!net->sctp.auth_enable) |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5460 | return -EACCES; |
| 5461 | |
| 5462 | if (len < sizeof(struct sctp_authchunks)) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5463 | return -EINVAL; |
| 5464 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5465 | if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks))) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5466 | return -EFAULT; |
| 5467 | |
Al Viro | 411223c | 2007-10-14 19:21:20 +0100 | [diff] [blame] | 5468 | to = p->gauth_chunks; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5469 | asoc = sctp_id2assoc(sk, val.gauth_assoc_id); |
| 5470 | if (!asoc && val.gauth_assoc_id && sctp_style(sk, UDP)) |
| 5471 | return -EINVAL; |
| 5472 | |
| 5473 | if (asoc) |
| 5474 | ch = (struct sctp_chunks_param*)asoc->c.auth_chunks; |
| 5475 | else |
| 5476 | ch = sctp_sk(sk)->ep->auth_chunk_list; |
| 5477 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5478 | if (!ch) |
| 5479 | goto num; |
| 5480 | |
Vlad Yasevich | b40db68 | 2008-02-27 14:40:37 -0500 | [diff] [blame] | 5481 | num_chunks = ntohs(ch->param_hdr.length) - sizeof(sctp_paramhdr_t); |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5482 | if (len < sizeof(struct sctp_authchunks) + num_chunks) |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5483 | return -EINVAL; |
| 5484 | |
Vlad Yasevich | 5e739d1 | 2008-08-21 03:34:25 -0700 | [diff] [blame] | 5485 | if (copy_to_user(to, ch->chunks, num_chunks)) |
| 5486 | return -EFAULT; |
| 5487 | num: |
| 5488 | len = sizeof(struct sctp_authchunks) + num_chunks; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5489 | if (put_user(len, optlen)) |
| 5490 | return -EFAULT; |
Vlad Yasevich | 7e8616d | 2008-02-27 16:04:52 -0500 | [diff] [blame] | 5491 | if (put_user(num_chunks, &p->gauth_number_of_chunks)) |
| 5492 | return -EFAULT; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5493 | |
| 5494 | return 0; |
| 5495 | } |
| 5496 | |
Wei Yongjun | aea3c5c | 2008-12-25 16:57:24 -0800 | [diff] [blame] | 5497 | /* |
| 5498 | * 8.2.5. Get the Current Number of Associations (SCTP_GET_ASSOC_NUMBER) |
| 5499 | * This option gets the current number of associations that are attached |
| 5500 | * to a one-to-many style socket. The option value is an uint32_t. |
| 5501 | */ |
| 5502 | static int sctp_getsockopt_assoc_number(struct sock *sk, int len, |
| 5503 | char __user *optval, int __user *optlen) |
| 5504 | { |
| 5505 | struct sctp_sock *sp = sctp_sk(sk); |
| 5506 | struct sctp_association *asoc; |
| 5507 | u32 val = 0; |
| 5508 | |
| 5509 | if (sctp_style(sk, TCP)) |
| 5510 | return -EOPNOTSUPP; |
| 5511 | |
| 5512 | if (len < sizeof(u32)) |
| 5513 | return -EINVAL; |
| 5514 | |
| 5515 | len = sizeof(u32); |
| 5516 | |
| 5517 | list_for_each_entry(asoc, &(sp->ep->asocs), asocs) { |
| 5518 | val++; |
| 5519 | } |
| 5520 | |
| 5521 | if (put_user(len, optlen)) |
| 5522 | return -EFAULT; |
| 5523 | if (copy_to_user(optval, &val, len)) |
| 5524 | return -EFAULT; |
| 5525 | |
| 5526 | return 0; |
| 5527 | } |
| 5528 | |
Wei Yongjun | 209ba42 | 2011-04-17 17:27:08 +0000 | [diff] [blame] | 5529 | /* |
Michio Honda | 7dc04d7 | 2011-04-26 20:16:31 +0900 | [diff] [blame] | 5530 | * 8.1.23 SCTP_AUTO_ASCONF |
| 5531 | * See the corresponding setsockopt entry as description |
| 5532 | */ |
| 5533 | static int sctp_getsockopt_auto_asconf(struct sock *sk, int len, |
| 5534 | char __user *optval, int __user *optlen) |
| 5535 | { |
| 5536 | int val = 0; |
| 5537 | |
| 5538 | if (len < sizeof(int)) |
| 5539 | return -EINVAL; |
| 5540 | |
| 5541 | len = sizeof(int); |
| 5542 | if (sctp_sk(sk)->do_auto_asconf && sctp_is_ep_boundall(sk)) |
| 5543 | val = 1; |
| 5544 | if (put_user(len, optlen)) |
| 5545 | return -EFAULT; |
| 5546 | if (copy_to_user(optval, &val, len)) |
| 5547 | return -EFAULT; |
| 5548 | return 0; |
| 5549 | } |
| 5550 | |
| 5551 | /* |
Wei Yongjun | 209ba42 | 2011-04-17 17:27:08 +0000 | [diff] [blame] | 5552 | * 8.2.6. Get the Current Identifiers of Associations |
| 5553 | * (SCTP_GET_ASSOC_ID_LIST) |
| 5554 | * |
| 5555 | * This option gets the current list of SCTP association identifiers of |
| 5556 | * the SCTP associations handled by a one-to-many style socket. |
| 5557 | */ |
| 5558 | static int sctp_getsockopt_assoc_ids(struct sock *sk, int len, |
| 5559 | char __user *optval, int __user *optlen) |
| 5560 | { |
| 5561 | struct sctp_sock *sp = sctp_sk(sk); |
| 5562 | struct sctp_association *asoc; |
| 5563 | struct sctp_assoc_ids *ids; |
| 5564 | u32 num = 0; |
| 5565 | |
| 5566 | if (sctp_style(sk, TCP)) |
| 5567 | return -EOPNOTSUPP; |
| 5568 | |
| 5569 | if (len < sizeof(struct sctp_assoc_ids)) |
| 5570 | return -EINVAL; |
| 5571 | |
| 5572 | list_for_each_entry(asoc, &(sp->ep->asocs), asocs) { |
| 5573 | num++; |
| 5574 | } |
| 5575 | |
| 5576 | if (len < sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num) |
| 5577 | return -EINVAL; |
| 5578 | |
| 5579 | len = sizeof(struct sctp_assoc_ids) + sizeof(sctp_assoc_t) * num; |
| 5580 | |
| 5581 | ids = kmalloc(len, GFP_KERNEL); |
| 5582 | if (unlikely(!ids)) |
| 5583 | return -ENOMEM; |
| 5584 | |
| 5585 | ids->gaids_number_of_ids = num; |
| 5586 | num = 0; |
| 5587 | list_for_each_entry(asoc, &(sp->ep->asocs), asocs) { |
| 5588 | ids->gaids_assoc_id[num++] = asoc->assoc_id; |
| 5589 | } |
| 5590 | |
| 5591 | if (put_user(len, optlen) || copy_to_user(optval, ids, len)) { |
| 5592 | kfree(ids); |
| 5593 | return -EFAULT; |
| 5594 | } |
| 5595 | |
| 5596 | kfree(ids); |
| 5597 | return 0; |
| 5598 | } |
| 5599 | |
Neil Horman | 5aa93bc | 2012-07-21 07:56:07 +0000 | [diff] [blame] | 5600 | /* |
| 5601 | * SCTP_PEER_ADDR_THLDS |
| 5602 | * |
| 5603 | * This option allows us to fetch the partially failed threshold for one or all |
| 5604 | * transports in an association. See Section 6.1 of: |
| 5605 | * http://www.ietf.org/id/draft-nishida-tsvwg-sctp-failover-05.txt |
| 5606 | */ |
| 5607 | static int sctp_getsockopt_paddr_thresholds(struct sock *sk, |
| 5608 | char __user *optval, |
| 5609 | int len, |
| 5610 | int __user *optlen) |
| 5611 | { |
| 5612 | struct sctp_paddrthlds val; |
| 5613 | struct sctp_transport *trans; |
| 5614 | struct sctp_association *asoc; |
| 5615 | |
| 5616 | if (len < sizeof(struct sctp_paddrthlds)) |
| 5617 | return -EINVAL; |
| 5618 | len = sizeof(struct sctp_paddrthlds); |
| 5619 | if (copy_from_user(&val, (struct sctp_paddrthlds __user *)optval, len)) |
| 5620 | return -EFAULT; |
| 5621 | |
| 5622 | if (sctp_is_any(sk, (const union sctp_addr *)&val.spt_address)) { |
| 5623 | asoc = sctp_id2assoc(sk, val.spt_assoc_id); |
| 5624 | if (!asoc) |
| 5625 | return -ENOENT; |
| 5626 | |
| 5627 | val.spt_pathpfthld = asoc->pf_retrans; |
| 5628 | val.spt_pathmaxrxt = asoc->pathmaxrxt; |
| 5629 | } else { |
| 5630 | trans = sctp_addr_id2transport(sk, &val.spt_address, |
| 5631 | val.spt_assoc_id); |
| 5632 | if (!trans) |
| 5633 | return -ENOENT; |
| 5634 | |
| 5635 | val.spt_pathmaxrxt = trans->pathmaxrxt; |
| 5636 | val.spt_pathpfthld = trans->pf_retrans; |
| 5637 | } |
| 5638 | |
| 5639 | if (put_user(len, optlen) || copy_to_user(optval, &val, len)) |
| 5640 | return -EFAULT; |
| 5641 | |
| 5642 | return 0; |
| 5643 | } |
| 5644 | |
Michele Baldessari | 196d675 | 2012-12-01 04:49:42 +0000 | [diff] [blame] | 5645 | /* |
| 5646 | * SCTP_GET_ASSOC_STATS |
| 5647 | * |
| 5648 | * This option retrieves local per endpoint statistics. It is modeled |
| 5649 | * after OpenSolaris' implementation |
| 5650 | */ |
| 5651 | static int sctp_getsockopt_assoc_stats(struct sock *sk, int len, |
| 5652 | char __user *optval, |
| 5653 | int __user *optlen) |
| 5654 | { |
| 5655 | struct sctp_assoc_stats sas; |
| 5656 | struct sctp_association *asoc = NULL; |
| 5657 | |
| 5658 | /* User must provide at least the assoc id */ |
| 5659 | if (len < sizeof(sctp_assoc_t)) |
| 5660 | return -EINVAL; |
| 5661 | |
Guenter Roeck | 726bc6b | 2013-02-27 10:57:31 +0000 | [diff] [blame] | 5662 | /* Allow the struct to grow and fill in as much as possible */ |
| 5663 | len = min_t(size_t, len, sizeof(sas)); |
| 5664 | |
Michele Baldessari | 196d675 | 2012-12-01 04:49:42 +0000 | [diff] [blame] | 5665 | if (copy_from_user(&sas, optval, len)) |
| 5666 | return -EFAULT; |
| 5667 | |
| 5668 | asoc = sctp_id2assoc(sk, sas.sas_assoc_id); |
| 5669 | if (!asoc) |
| 5670 | return -EINVAL; |
| 5671 | |
| 5672 | sas.sas_rtxchunks = asoc->stats.rtxchunks; |
| 5673 | sas.sas_gapcnt = asoc->stats.gapcnt; |
| 5674 | sas.sas_outofseqtsns = asoc->stats.outofseqtsns; |
| 5675 | sas.sas_osacks = asoc->stats.osacks; |
| 5676 | sas.sas_isacks = asoc->stats.isacks; |
| 5677 | sas.sas_octrlchunks = asoc->stats.octrlchunks; |
| 5678 | sas.sas_ictrlchunks = asoc->stats.ictrlchunks; |
| 5679 | sas.sas_oodchunks = asoc->stats.oodchunks; |
| 5680 | sas.sas_iodchunks = asoc->stats.iodchunks; |
| 5681 | sas.sas_ouodchunks = asoc->stats.ouodchunks; |
| 5682 | sas.sas_iuodchunks = asoc->stats.iuodchunks; |
| 5683 | sas.sas_idupchunks = asoc->stats.idupchunks; |
| 5684 | sas.sas_opackets = asoc->stats.opackets; |
| 5685 | sas.sas_ipackets = asoc->stats.ipackets; |
| 5686 | |
| 5687 | /* New high max rto observed, will return 0 if not a single |
| 5688 | * RTO update took place. obs_rto_ipaddr will be bogus |
| 5689 | * in such a case |
| 5690 | */ |
| 5691 | sas.sas_maxrto = asoc->stats.max_obs_rto; |
| 5692 | memcpy(&sas.sas_obs_rto_ipaddr, &asoc->stats.obs_rto_ipaddr, |
| 5693 | sizeof(struct sockaddr_storage)); |
| 5694 | |
| 5695 | /* Mark beginning of a new observation period */ |
| 5696 | asoc->stats.max_obs_rto = asoc->rto_min; |
| 5697 | |
Michele Baldessari | 196d675 | 2012-12-01 04:49:42 +0000 | [diff] [blame] | 5698 | if (put_user(len, optlen)) |
| 5699 | return -EFAULT; |
| 5700 | |
| 5701 | SCTP_DEBUG_PRINTK("sctp_getsockopt_assoc_stat(%d): %d\n", |
| 5702 | len, sas.sas_assoc_id); |
| 5703 | |
| 5704 | if (copy_to_user(optval, &sas, len)) |
| 5705 | return -EFAULT; |
| 5706 | |
| 5707 | return 0; |
| 5708 | } |
| 5709 | |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 5710 | static int sctp_getsockopt(struct sock *sk, int level, int optname, |
| 5711 | char __user *optval, int __user *optlen) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5712 | { |
| 5713 | int retval = 0; |
| 5714 | int len; |
| 5715 | |
Frank Filz | 3f7a87d | 2005-06-20 13:14:57 -0700 | [diff] [blame] | 5716 | SCTP_DEBUG_PRINTK("sctp_getsockopt(sk: %p... optname: %d)\n", |
| 5717 | sk, optname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5718 | |
| 5719 | /* I can hardly begin to describe how wrong this is. This is |
| 5720 | * so broken as to be worse than useless. The API draft |
| 5721 | * REALLY is NOT helpful here... I am not convinced that the |
| 5722 | * semantics of getsockopt() with a level OTHER THAN SOL_SCTP |
| 5723 | * are at all well-founded. |
| 5724 | */ |
| 5725 | if (level != SOL_SCTP) { |
| 5726 | struct sctp_af *af = sctp_sk(sk)->pf->af; |
| 5727 | |
| 5728 | retval = af->getsockopt(sk, level, optname, optval, optlen); |
| 5729 | return retval; |
| 5730 | } |
| 5731 | |
| 5732 | if (get_user(len, optlen)) |
| 5733 | return -EFAULT; |
| 5734 | |
| 5735 | sctp_lock_sock(sk); |
| 5736 | |
| 5737 | switch (optname) { |
| 5738 | case SCTP_STATUS: |
| 5739 | retval = sctp_getsockopt_sctp_status(sk, len, optval, optlen); |
| 5740 | break; |
| 5741 | case SCTP_DISABLE_FRAGMENTS: |
| 5742 | retval = sctp_getsockopt_disable_fragments(sk, len, optval, |
| 5743 | optlen); |
| 5744 | break; |
| 5745 | case SCTP_EVENTS: |
| 5746 | retval = sctp_getsockopt_events(sk, len, optval, optlen); |
| 5747 | break; |
| 5748 | case SCTP_AUTOCLOSE: |
| 5749 | retval = sctp_getsockopt_autoclose(sk, len, optval, optlen); |
| 5750 | break; |
| 5751 | case SCTP_SOCKOPT_PEELOFF: |
| 5752 | retval = sctp_getsockopt_peeloff(sk, len, optval, optlen); |
| 5753 | break; |
| 5754 | case SCTP_PEER_ADDR_PARAMS: |
| 5755 | retval = sctp_getsockopt_peer_addr_params(sk, len, optval, |
| 5756 | optlen); |
| 5757 | break; |
Shan Wei | 4580ccc | 2011-01-18 22:39:00 +0000 | [diff] [blame] | 5758 | case SCTP_DELAYED_SACK: |
Wei Yongjun | d364d92 | 2008-05-09 15:13:26 -0700 | [diff] [blame] | 5759 | retval = sctp_getsockopt_delayed_ack(sk, len, optval, |
Frank Filz | 7708610 | 2005-12-22 11:37:30 -0800 | [diff] [blame] | 5760 | optlen); |
| 5761 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5762 | case SCTP_INITMSG: |
| 5763 | retval = sctp_getsockopt_initmsg(sk, len, optval, optlen); |
| 5764 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5765 | case SCTP_GET_PEER_ADDRS: |
| 5766 | retval = sctp_getsockopt_peer_addrs(sk, len, optval, |
| 5767 | optlen); |
| 5768 | break; |
| 5769 | case SCTP_GET_LOCAL_ADDRS: |
| 5770 | retval = sctp_getsockopt_local_addrs(sk, len, optval, |
| 5771 | optlen); |
| 5772 | break; |
Vlad Yasevich | c6ba68a | 2009-06-01 12:41:15 -0400 | [diff] [blame] | 5773 | case SCTP_SOCKOPT_CONNECTX3: |
| 5774 | retval = sctp_getsockopt_connectx3(sk, len, optval, optlen); |
| 5775 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5776 | case SCTP_DEFAULT_SEND_PARAM: |
| 5777 | retval = sctp_getsockopt_default_send_param(sk, len, |
| 5778 | optval, optlen); |
| 5779 | break; |
| 5780 | case SCTP_PRIMARY_ADDR: |
| 5781 | retval = sctp_getsockopt_primary_addr(sk, len, optval, optlen); |
| 5782 | break; |
| 5783 | case SCTP_NODELAY: |
| 5784 | retval = sctp_getsockopt_nodelay(sk, len, optval, optlen); |
| 5785 | break; |
| 5786 | case SCTP_RTOINFO: |
| 5787 | retval = sctp_getsockopt_rtoinfo(sk, len, optval, optlen); |
| 5788 | break; |
| 5789 | case SCTP_ASSOCINFO: |
| 5790 | retval = sctp_getsockopt_associnfo(sk, len, optval, optlen); |
| 5791 | break; |
| 5792 | case SCTP_I_WANT_MAPPED_V4_ADDR: |
| 5793 | retval = sctp_getsockopt_mappedv4(sk, len, optval, optlen); |
| 5794 | break; |
| 5795 | case SCTP_MAXSEG: |
| 5796 | retval = sctp_getsockopt_maxseg(sk, len, optval, optlen); |
| 5797 | break; |
| 5798 | case SCTP_GET_PEER_ADDR_INFO: |
| 5799 | retval = sctp_getsockopt_peer_addr_info(sk, len, optval, |
| 5800 | optlen); |
| 5801 | break; |
Ivan Skytte Jorgensen | 0f3fffd | 2006-12-20 16:07:04 -0800 | [diff] [blame] | 5802 | case SCTP_ADAPTATION_LAYER: |
| 5803 | retval = sctp_getsockopt_adaptation_layer(sk, len, optval, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5804 | optlen); |
| 5805 | break; |
Ivan Skytte Jorgensen | 6ab792f | 2006-12-13 16:34:22 -0800 | [diff] [blame] | 5806 | case SCTP_CONTEXT: |
| 5807 | retval = sctp_getsockopt_context(sk, len, optval, optlen); |
| 5808 | break; |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 5809 | case SCTP_FRAGMENT_INTERLEAVE: |
| 5810 | retval = sctp_getsockopt_fragment_interleave(sk, len, optval, |
| 5811 | optlen); |
| 5812 | break; |
Vlad Yasevich | d49d91d | 2007-03-23 11:32:00 -0700 | [diff] [blame] | 5813 | case SCTP_PARTIAL_DELIVERY_POINT: |
| 5814 | retval = sctp_getsockopt_partial_delivery_point(sk, len, optval, |
| 5815 | optlen); |
| 5816 | break; |
Vlad Yasevich | 7033157 | 2007-03-23 11:34:36 -0700 | [diff] [blame] | 5817 | case SCTP_MAX_BURST: |
| 5818 | retval = sctp_getsockopt_maxburst(sk, len, optval, optlen); |
| 5819 | break; |
Vlad Yasevich | 65b07e5 | 2007-09-16 19:34:00 -0700 | [diff] [blame] | 5820 | case SCTP_AUTH_KEY: |
| 5821 | case SCTP_AUTH_CHUNK: |
| 5822 | case SCTP_AUTH_DELETE_KEY: |
| 5823 | retval = -EOPNOTSUPP; |
| 5824 | break; |
| 5825 | case SCTP_HMAC_IDENT: |
| 5826 | retval = sctp_getsockopt_hmac_ident(sk, len, optval, optlen); |
| 5827 | break; |
| 5828 | case SCTP_AUTH_ACTIVE_KEY: |
| 5829 | retval = sctp_getsockopt_active_key(sk, len, optval, optlen); |
| 5830 | break; |
| 5831 | case SCTP_PEER_AUTH_CHUNKS: |
| 5832 | retval = sctp_getsockopt_peer_auth_chunks(sk, len, optval, |
| 5833 | optlen); |
| 5834 | break; |
| 5835 | case SCTP_LOCAL_AUTH_CHUNKS: |
| 5836 | retval = sctp_getsockopt_local_auth_chunks(sk, len, optval, |
| 5837 | optlen); |
| 5838 | break; |
Wei Yongjun | aea3c5c | 2008-12-25 16:57:24 -0800 | [diff] [blame] | 5839 | case SCTP_GET_ASSOC_NUMBER: |
| 5840 | retval = sctp_getsockopt_assoc_number(sk, len, optval, optlen); |
| 5841 | break; |
Wei Yongjun | 209ba42 | 2011-04-17 17:27:08 +0000 | [diff] [blame] | 5842 | case SCTP_GET_ASSOC_ID_LIST: |
| 5843 | retval = sctp_getsockopt_assoc_ids(sk, len, optval, optlen); |
| 5844 | break; |
Michio Honda | 7dc04d7 | 2011-04-26 20:16:31 +0900 | [diff] [blame] | 5845 | case SCTP_AUTO_ASCONF: |
| 5846 | retval = sctp_getsockopt_auto_asconf(sk, len, optval, optlen); |
| 5847 | break; |
Neil Horman | 5aa93bc | 2012-07-21 07:56:07 +0000 | [diff] [blame] | 5848 | case SCTP_PEER_ADDR_THLDS: |
| 5849 | retval = sctp_getsockopt_paddr_thresholds(sk, optval, len, optlen); |
| 5850 | break; |
Michele Baldessari | 196d675 | 2012-12-01 04:49:42 +0000 | [diff] [blame] | 5851 | case SCTP_GET_ASSOC_STATS: |
| 5852 | retval = sctp_getsockopt_assoc_stats(sk, len, optval, optlen); |
| 5853 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5854 | default: |
| 5855 | retval = -ENOPROTOOPT; |
| 5856 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 5857 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5858 | |
| 5859 | sctp_release_sock(sk); |
| 5860 | return retval; |
| 5861 | } |
| 5862 | |
| 5863 | static void sctp_hash(struct sock *sk) |
| 5864 | { |
| 5865 | /* STUB */ |
| 5866 | } |
| 5867 | |
| 5868 | static void sctp_unhash(struct sock *sk) |
| 5869 | { |
| 5870 | /* STUB */ |
| 5871 | } |
| 5872 | |
| 5873 | /* Check if port is acceptable. Possibly find first available port. |
| 5874 | * |
| 5875 | * The port hash table (contained in the 'global' SCTP protocol storage |
| 5876 | * returned by struct sctp_protocol *sctp_get_protocol()). The hash |
| 5877 | * table is an array of 4096 lists (sctp_bind_hashbucket). Each |
| 5878 | * list (the list number is the port number hashed out, so as you |
| 5879 | * would expect from a hash function, all the ports in a given list have |
| 5880 | * such a number that hashes out to the same list number; you were |
| 5881 | * expecting that, right?); so each list has a set of ports, with a |
| 5882 | * link to the socket (struct sock) that uses it, the port number and |
| 5883 | * a fastreuse flag (FIXME: NPI ipg). |
| 5884 | */ |
| 5885 | static struct sctp_bind_bucket *sctp_bucket_create( |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5886 | struct sctp_bind_hashbucket *head, struct net *, unsigned short snum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5887 | |
| 5888 | static long sctp_get_port_local(struct sock *sk, union sctp_addr *addr) |
| 5889 | { |
| 5890 | struct sctp_bind_hashbucket *head; /* hash list */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5891 | struct sctp_bind_bucket *pp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5892 | unsigned short snum; |
| 5893 | int ret; |
| 5894 | |
Al Viro | 04afd8b | 2006-11-20 17:02:01 -0800 | [diff] [blame] | 5895 | snum = ntohs(addr->v4.sin_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5896 | |
| 5897 | SCTP_DEBUG_PRINTK("sctp_get_port() begins, snum=%d\n", snum); |
| 5898 | sctp_local_bh_disable(); |
| 5899 | |
| 5900 | if (snum == 0) { |
Stephen Hemminger | 0639300 | 2007-10-10 17:30:18 -0700 | [diff] [blame] | 5901 | /* Search for an available port. */ |
Stephen Hemminger | 227b60f | 2007-10-10 17:30:46 -0700 | [diff] [blame] | 5902 | int low, high, remaining, index; |
| 5903 | unsigned int rover; |
| 5904 | |
| 5905 | inet_get_local_port_range(&low, &high); |
| 5906 | remaining = (high - low) + 1; |
| 5907 | rover = net_random() % remaining + low; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5909 | do { |
| 5910 | rover++; |
| 5911 | if ((rover < low) || (rover > high)) |
| 5912 | rover = low; |
Amerigo Wang | e3826f1 | 2010-05-05 00:27:06 +0000 | [diff] [blame] | 5913 | if (inet_is_reserved_local_port(rover)) |
| 5914 | continue; |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5915 | index = sctp_phashfn(sock_net(sk), rover); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5916 | head = &sctp_port_hashtable[index]; |
| 5917 | sctp_spin_lock(&head->lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5918 | sctp_for_each_hentry(pp, &head->chain) |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5919 | if ((pp->port == rover) && |
| 5920 | net_eq(sock_net(sk), pp->net)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5921 | goto next; |
| 5922 | break; |
| 5923 | next: |
| 5924 | sctp_spin_unlock(&head->lock); |
| 5925 | } while (--remaining > 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5926 | |
| 5927 | /* Exhausted local port range during search? */ |
| 5928 | ret = 1; |
| 5929 | if (remaining <= 0) |
| 5930 | goto fail; |
| 5931 | |
| 5932 | /* OK, here is the one we will use. HEAD (the port |
| 5933 | * hash table list entry) is non-NULL and we hold it's |
| 5934 | * mutex. |
| 5935 | */ |
| 5936 | snum = rover; |
| 5937 | } else { |
| 5938 | /* We are given an specific port number; we verify |
| 5939 | * that it is not being used. If it is used, we will |
| 5940 | * exahust the search in the hash list corresponding |
| 5941 | * to the port number (snum) - we detect that with the |
| 5942 | * port iterator, pp being NULL. |
| 5943 | */ |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5944 | head = &sctp_port_hashtable[sctp_phashfn(sock_net(sk), snum)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5945 | sctp_spin_lock(&head->lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5946 | sctp_for_each_hentry(pp, &head->chain) { |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5947 | if ((pp->port == snum) && net_eq(pp->net, sock_net(sk))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5948 | goto pp_found; |
| 5949 | } |
| 5950 | } |
| 5951 | pp = NULL; |
| 5952 | goto pp_not_found; |
| 5953 | pp_found: |
| 5954 | if (!hlist_empty(&pp->owner)) { |
| 5955 | /* We had a port hash table hit - there is an |
| 5956 | * available port (pp != NULL) and it is being |
| 5957 | * used by other socket (pp->owner not empty); that other |
| 5958 | * socket is going to be sk2. |
| 5959 | */ |
| 5960 | int reuse = sk->sk_reuse; |
| 5961 | struct sock *sk2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5962 | |
| 5963 | SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n"); |
Vlad Yasevich | ce5325c | 2007-05-04 13:34:49 -0700 | [diff] [blame] | 5964 | if (pp->fastreuse && sk->sk_reuse && |
| 5965 | sk->sk_state != SCTP_SS_LISTENING) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5966 | goto success; |
| 5967 | |
| 5968 | /* Run through the list of sockets bound to the port |
| 5969 | * (pp->port) [via the pointers bind_next and |
| 5970 | * bind_pprev in the struct sock *sk2 (pp->sk)]. On each one, |
| 5971 | * we get the endpoint they describe and run through |
| 5972 | * the endpoint's list of IP (v4 or v6) addresses, |
| 5973 | * comparing each of the addresses with the address of |
| 5974 | * the socket sk. If we find a match, then that means |
| 5975 | * that this port/socket (sk) combination are already |
| 5976 | * in an endpoint. |
| 5977 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5978 | sk_for_each_bound(sk2, &pp->owner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5979 | struct sctp_endpoint *ep2; |
| 5980 | ep2 = sctp_sk(sk2)->ep; |
| 5981 | |
Vlad Yasevich | 4e54064 | 2008-07-18 23:06:32 -0700 | [diff] [blame] | 5982 | if (sk == sk2 || |
| 5983 | (reuse && sk2->sk_reuse && |
| 5984 | sk2->sk_state != SCTP_SS_LISTENING)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5985 | continue; |
| 5986 | |
Vlad Yasevich | 7dab83d | 2008-07-18 23:05:40 -0700 | [diff] [blame] | 5987 | if (sctp_bind_addr_conflict(&ep2->base.bind_addr, addr, |
| 5988 | sctp_sk(sk2), sctp_sk(sk))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5989 | ret = (long)sk2; |
| 5990 | goto fail_unlock; |
| 5991 | } |
| 5992 | } |
| 5993 | SCTP_DEBUG_PRINTK("sctp_get_port(): Found a match\n"); |
| 5994 | } |
| 5995 | pp_not_found: |
| 5996 | /* If there was a hash table miss, create a new port. */ |
| 5997 | ret = 1; |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 5998 | if (!pp && !(pp = sctp_bucket_create(head, sock_net(sk), snum))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5999 | goto fail_unlock; |
| 6000 | |
| 6001 | /* In either case (hit or miss), make sure fastreuse is 1 only |
| 6002 | * if sk->sk_reuse is too (that is, if the caller requested |
| 6003 | * SO_REUSEADDR on this socket -sk-). |
| 6004 | */ |
Vlad Yasevich | ce5325c | 2007-05-04 13:34:49 -0700 | [diff] [blame] | 6005 | if (hlist_empty(&pp->owner)) { |
| 6006 | if (sk->sk_reuse && sk->sk_state != SCTP_SS_LISTENING) |
| 6007 | pp->fastreuse = 1; |
| 6008 | else |
| 6009 | pp->fastreuse = 0; |
| 6010 | } else if (pp->fastreuse && |
| 6011 | (!sk->sk_reuse || sk->sk_state == SCTP_SS_LISTENING)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6012 | pp->fastreuse = 0; |
| 6013 | |
| 6014 | /* We are set, so fill up all the data in the hash table |
| 6015 | * entry, tie the socket list information with the rest of the |
| 6016 | * sockets FIXME: Blurry, NPI (ipg). |
| 6017 | */ |
| 6018 | success: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6019 | if (!sctp_sk(sk)->bind_hash) { |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6020 | inet_sk(sk)->inet_num = snum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6021 | sk_add_bind_node(sk, &pp->owner); |
| 6022 | sctp_sk(sk)->bind_hash = pp; |
| 6023 | } |
| 6024 | ret = 0; |
| 6025 | |
| 6026 | fail_unlock: |
| 6027 | sctp_spin_unlock(&head->lock); |
| 6028 | |
| 6029 | fail: |
| 6030 | sctp_local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6031 | return ret; |
| 6032 | } |
| 6033 | |
| 6034 | /* Assign a 'snum' port to the socket. If snum == 0, an ephemeral |
| 6035 | * port is requested. |
| 6036 | */ |
| 6037 | static int sctp_get_port(struct sock *sk, unsigned short snum) |
| 6038 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6039 | union sctp_addr addr; |
| 6040 | struct sctp_af *af = sctp_sk(sk)->pf->af; |
| 6041 | |
| 6042 | /* Set up a dummy address struct from the sk. */ |
| 6043 | af->from_sk(&addr, sk); |
| 6044 | addr.v4.sin_port = htons(snum); |
| 6045 | |
| 6046 | /* Note: sk->sk_num gets filled in if ephemeral port request. */ |
Daniel Borkmann | 62208f1 | 2013-06-25 18:17:30 +0200 | [diff] [blame^] | 6047 | return !!sctp_get_port_local(sk, &addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6048 | } |
| 6049 | |
| 6050 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6051 | * Move a socket to LISTENING state. |
| 6052 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 6053 | static int sctp_listen_start(struct sock *sk, int backlog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6054 | { |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6055 | struct sctp_sock *sp = sctp_sk(sk); |
| 6056 | struct sctp_endpoint *ep = sp->ep; |
Herbert Xu | 1b489e1 | 2006-08-20 15:07:14 +1000 | [diff] [blame] | 6057 | struct crypto_hash *tfm = NULL; |
Neil Horman | 3c68198 | 2012-10-24 09:20:03 +0000 | [diff] [blame] | 6058 | char alg[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6059 | |
| 6060 | /* Allocate HMAC for generating cookie. */ |
Neil Horman | 3c68198 | 2012-10-24 09:20:03 +0000 | [diff] [blame] | 6061 | if (!sp->hmac && sp->sctp_hmac_alg) { |
| 6062 | sprintf(alg, "hmac(%s)", sp->sctp_hmac_alg); |
| 6063 | tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC); |
Vlad Yasevich | 8dc4984 | 2007-05-09 13:50:20 -0700 | [diff] [blame] | 6064 | if (IS_ERR(tfm)) { |
Joe Perches | e87cc47 | 2012-05-13 21:56:26 +0000 | [diff] [blame] | 6065 | net_info_ratelimited("failed to load transform for %s: %ld\n", |
Neil Horman | 3c68198 | 2012-10-24 09:20:03 +0000 | [diff] [blame] | 6066 | sp->sctp_hmac_alg, PTR_ERR(tfm)); |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6067 | return -ENOSYS; |
| 6068 | } |
| 6069 | sctp_sk(sk)->hmac = tfm; |
| 6070 | } |
| 6071 | |
| 6072 | /* |
| 6073 | * If a bind() or sctp_bindx() is not called prior to a listen() |
| 6074 | * call that allows new associations to be accepted, the system |
| 6075 | * picks an ephemeral port and will choose an address set equivalent |
| 6076 | * to binding with a wildcard address. |
| 6077 | * |
| 6078 | * This is not currently spelled out in the SCTP sockets |
| 6079 | * extensions draft, but follows the practice as seen in TCP |
| 6080 | * sockets. |
| 6081 | * |
| 6082 | */ |
| 6083 | sk->sk_state = SCTP_SS_LISTENING; |
| 6084 | if (!ep->base.bind_addr.port) { |
| 6085 | if (sctp_autobind(sk)) |
| 6086 | return -EAGAIN; |
| 6087 | } else { |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6088 | if (sctp_get_port(sk, inet_sk(sk)->inet_num)) { |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6089 | sk->sk_state = SCTP_SS_CLOSED; |
| 6090 | return -EADDRINUSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6091 | } |
| 6092 | } |
| 6093 | |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6094 | sk->sk_max_ack_backlog = backlog; |
| 6095 | sctp_hash_endpoint(ep); |
| 6096 | return 0; |
| 6097 | } |
| 6098 | |
| 6099 | /* |
| 6100 | * 4.1.3 / 5.1.3 listen() |
| 6101 | * |
| 6102 | * By default, new associations are not accepted for UDP style sockets. |
| 6103 | * An application uses listen() to mark a socket as being able to |
| 6104 | * accept new associations. |
| 6105 | * |
| 6106 | * On TCP style sockets, applications use listen() to ready the SCTP |
| 6107 | * endpoint for accepting inbound associations. |
| 6108 | * |
| 6109 | * On both types of endpoints a backlog of '0' disables listening. |
| 6110 | * |
| 6111 | * Move a socket to LISTENING state. |
| 6112 | */ |
| 6113 | int sctp_inet_listen(struct socket *sock, int backlog) |
| 6114 | { |
| 6115 | struct sock *sk = sock->sk; |
| 6116 | struct sctp_endpoint *ep = sctp_sk(sk)->ep; |
| 6117 | int err = -EINVAL; |
| 6118 | |
| 6119 | if (unlikely(backlog < 0)) |
| 6120 | return err; |
| 6121 | |
| 6122 | sctp_lock_sock(sk); |
| 6123 | |
| 6124 | /* Peeled-off sockets are not allowed to listen(). */ |
| 6125 | if (sctp_style(sk, UDP_HIGH_BANDWIDTH)) |
| 6126 | goto out; |
| 6127 | |
| 6128 | if (sock->state != SS_UNCONNECTED) |
| 6129 | goto out; |
| 6130 | |
| 6131 | /* If backlog is zero, disable listening. */ |
| 6132 | if (!backlog) { |
| 6133 | if (sctp_sstate(sk, CLOSED)) |
| 6134 | goto out; |
| 6135 | |
| 6136 | err = 0; |
| 6137 | sctp_unhash_endpoint(ep); |
| 6138 | sk->sk_state = SCTP_SS_CLOSED; |
| 6139 | if (sk->sk_reuse) |
| 6140 | sctp_sk(sk)->bind_hash->fastreuse = 1; |
| 6141 | goto out; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 6142 | } |
| 6143 | |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6144 | /* If we are already listening, just update the backlog */ |
| 6145 | if (sctp_sstate(sk, LISTENING)) |
| 6146 | sk->sk_max_ack_backlog = backlog; |
| 6147 | else { |
| 6148 | err = sctp_listen_start(sk, backlog); |
| 6149 | if (err) |
| 6150 | goto out; |
| 6151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6152 | |
Vlad Yasevich | 5e8f3f7 | 2009-03-12 09:49:17 +0000 | [diff] [blame] | 6153 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6154 | out: |
| 6155 | sctp_release_sock(sk); |
| 6156 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6157 | } |
| 6158 | |
| 6159 | /* |
| 6160 | * This function is done by modeling the current datagram_poll() and the |
| 6161 | * tcp_poll(). Note that, based on these implementations, we don't |
| 6162 | * lock the socket in this function, even though it seems that, |
| 6163 | * ideally, locking or some other mechanisms can be used to ensure |
Neil Horman | 9bffc4a | 2005-12-19 14:24:40 -0800 | [diff] [blame] | 6164 | * the integrity of the counters (sndbuf and wmem_alloc) used |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6165 | * in this place. We assume that we don't need locks either until proven |
| 6166 | * otherwise. |
| 6167 | * |
| 6168 | * Another thing to note is that we include the Async I/O support |
| 6169 | * here, again, by modeling the current TCP/UDP code. We don't have |
| 6170 | * a good way to test with it yet. |
| 6171 | */ |
| 6172 | unsigned int sctp_poll(struct file *file, struct socket *sock, poll_table *wait) |
| 6173 | { |
| 6174 | struct sock *sk = sock->sk; |
| 6175 | struct sctp_sock *sp = sctp_sk(sk); |
| 6176 | unsigned int mask; |
| 6177 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6178 | poll_wait(file, sk_sleep(sk), wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6179 | |
| 6180 | /* A TCP-style listening socket becomes readable when the accept queue |
| 6181 | * is not empty. |
| 6182 | */ |
| 6183 | if (sctp_style(sk, TCP) && sctp_sstate(sk, LISTENING)) |
| 6184 | return (!list_empty(&sp->ep->asocs)) ? |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 6185 | (POLLIN | POLLRDNORM) : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6186 | |
| 6187 | mask = 0; |
| 6188 | |
| 6189 | /* Is there any exceptional events? */ |
| 6190 | if (sk->sk_err || !skb_queue_empty(&sk->sk_error_queue)) |
Keller, Jacob E | 7d4c04f | 2013-03-28 11:19:25 +0000 | [diff] [blame] | 6191 | mask |= POLLERR | |
| 6192 | sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? POLLPRI : 0; |
Davide Libenzi | f348d70 | 2006-03-25 03:07:39 -0800 | [diff] [blame] | 6193 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
Eric Dumazet | db40980 | 2010-09-06 11:13:50 +0000 | [diff] [blame] | 6194 | mask |= POLLRDHUP | POLLIN | POLLRDNORM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6195 | if (sk->sk_shutdown == SHUTDOWN_MASK) |
| 6196 | mask |= POLLHUP; |
| 6197 | |
| 6198 | /* Is it readable? Reconsider this code with TCP-style support. */ |
Eric Dumazet | db40980 | 2010-09-06 11:13:50 +0000 | [diff] [blame] | 6199 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6200 | mask |= POLLIN | POLLRDNORM; |
| 6201 | |
| 6202 | /* The association is either gone or not ready. */ |
| 6203 | if (!sctp_style(sk, UDP) && sctp_sstate(sk, CLOSED)) |
| 6204 | return mask; |
| 6205 | |
| 6206 | /* Is it writable? */ |
| 6207 | if (sctp_writeable(sk)) { |
| 6208 | mask |= POLLOUT | POLLWRNORM; |
| 6209 | } else { |
| 6210 | set_bit(SOCK_ASYNC_NOSPACE, &sk->sk_socket->flags); |
| 6211 | /* |
| 6212 | * Since the socket is not locked, the buffer |
| 6213 | * might be made available after the writeable check and |
| 6214 | * before the bit is set. This could cause a lost I/O |
| 6215 | * signal. tcp_poll() has a race breaker for this race |
| 6216 | * condition. Based on their implementation, we put |
| 6217 | * in the following code to cover it as well. |
| 6218 | */ |
| 6219 | if (sctp_writeable(sk)) |
| 6220 | mask |= POLLOUT | POLLWRNORM; |
| 6221 | } |
| 6222 | return mask; |
| 6223 | } |
| 6224 | |
| 6225 | /******************************************************************** |
| 6226 | * 2nd Level Abstractions |
| 6227 | ********************************************************************/ |
| 6228 | |
| 6229 | static struct sctp_bind_bucket *sctp_bucket_create( |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 6230 | struct sctp_bind_hashbucket *head, struct net *net, unsigned short snum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6231 | { |
| 6232 | struct sctp_bind_bucket *pp; |
| 6233 | |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 6234 | pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6235 | if (pp) { |
Li Zefan | 935a7f6 | 2008-04-10 01:58:06 -0700 | [diff] [blame] | 6236 | SCTP_DBG_OBJCNT_INC(bind_bucket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6237 | pp->port = snum; |
| 6238 | pp->fastreuse = 0; |
| 6239 | INIT_HLIST_HEAD(&pp->owner); |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 6240 | pp->net = net; |
Vlad Yasevich | d970dbf | 2007-11-09 11:43:40 -0500 | [diff] [blame] | 6241 | hlist_add_head(&pp->node, &head->chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6242 | } |
| 6243 | return pp; |
| 6244 | } |
| 6245 | |
| 6246 | /* Caller must hold hashbucket lock for this tb with local BH disabled */ |
| 6247 | static void sctp_bucket_destroy(struct sctp_bind_bucket *pp) |
| 6248 | { |
Sridhar Samudrala | 37fa687 | 2006-07-21 14:45:47 -0700 | [diff] [blame] | 6249 | if (pp && hlist_empty(&pp->owner)) { |
Vlad Yasevich | d970dbf | 2007-11-09 11:43:40 -0500 | [diff] [blame] | 6250 | __hlist_del(&pp->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6251 | kmem_cache_free(sctp_bucket_cachep, pp); |
| 6252 | SCTP_DBG_OBJCNT_DEC(bind_bucket); |
| 6253 | } |
| 6254 | } |
| 6255 | |
| 6256 | /* Release this socket's reference to a local port. */ |
| 6257 | static inline void __sctp_put_port(struct sock *sk) |
| 6258 | { |
| 6259 | struct sctp_bind_hashbucket *head = |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 6260 | &sctp_port_hashtable[sctp_phashfn(sock_net(sk), |
| 6261 | inet_sk(sk)->inet_num)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6262 | struct sctp_bind_bucket *pp; |
| 6263 | |
| 6264 | sctp_spin_lock(&head->lock); |
| 6265 | pp = sctp_sk(sk)->bind_hash; |
| 6266 | __sk_del_bind_node(sk); |
| 6267 | sctp_sk(sk)->bind_hash = NULL; |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6268 | inet_sk(sk)->inet_num = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6269 | sctp_bucket_destroy(pp); |
| 6270 | sctp_spin_unlock(&head->lock); |
| 6271 | } |
| 6272 | |
| 6273 | void sctp_put_port(struct sock *sk) |
| 6274 | { |
| 6275 | sctp_local_bh_disable(); |
| 6276 | __sctp_put_port(sk); |
| 6277 | sctp_local_bh_enable(); |
| 6278 | } |
| 6279 | |
| 6280 | /* |
| 6281 | * The system picks an ephemeral port and choose an address set equivalent |
| 6282 | * to binding with a wildcard address. |
| 6283 | * One of those addresses will be the primary address for the association. |
| 6284 | * This automatically enables the multihoming capability of SCTP. |
| 6285 | */ |
| 6286 | static int sctp_autobind(struct sock *sk) |
| 6287 | { |
| 6288 | union sctp_addr autoaddr; |
| 6289 | struct sctp_af *af; |
Al Viro | 6fbfa9f | 2006-11-20 17:24:53 -0800 | [diff] [blame] | 6290 | __be16 port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6291 | |
| 6292 | /* Initialize a local sockaddr structure to INADDR_ANY. */ |
| 6293 | af = sctp_sk(sk)->pf->af; |
| 6294 | |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6295 | port = htons(inet_sk(sk)->inet_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6296 | af->inaddr_any(&autoaddr, port); |
| 6297 | |
| 6298 | return sctp_do_bind(sk, &autoaddr, af->sockaddr_len); |
| 6299 | } |
| 6300 | |
| 6301 | /* Parse out IPPROTO_SCTP CMSG headers. Perform only minimal validation. |
| 6302 | * |
| 6303 | * From RFC 2292 |
| 6304 | * 4.2 The cmsghdr Structure * |
| 6305 | * |
| 6306 | * When ancillary data is sent or received, any number of ancillary data |
| 6307 | * objects can be specified by the msg_control and msg_controllen members of |
| 6308 | * the msghdr structure, because each object is preceded by |
| 6309 | * a cmsghdr structure defining the object's length (the cmsg_len member). |
| 6310 | * Historically Berkeley-derived implementations have passed only one object |
| 6311 | * at a time, but this API allows multiple objects to be |
| 6312 | * passed in a single call to sendmsg() or recvmsg(). The following example |
| 6313 | * shows two ancillary data objects in a control buffer. |
| 6314 | * |
| 6315 | * |<--------------------------- msg_controllen -------------------------->| |
| 6316 | * | | |
| 6317 | * |
| 6318 | * |<----- ancillary data object ----->|<----- ancillary data object ----->| |
| 6319 | * |
| 6320 | * |<---------- CMSG_SPACE() --------->|<---------- CMSG_SPACE() --------->| |
| 6321 | * | | | |
| 6322 | * |
| 6323 | * |<---------- cmsg_len ---------->| |<--------- cmsg_len ----------->| | |
| 6324 | * |
| 6325 | * |<--------- CMSG_LEN() --------->| |<-------- CMSG_LEN() ---------->| | |
| 6326 | * | | | | | |
| 6327 | * |
| 6328 | * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+ |
| 6329 | * |cmsg_|cmsg_|cmsg_|XX| |XX|cmsg_|cmsg_|cmsg_|XX| |XX| |
| 6330 | * |
| 6331 | * |len |level|type |XX|cmsg_data[]|XX|len |level|type |XX|cmsg_data[]|XX| |
| 6332 | * |
| 6333 | * +-----+-----+-----+--+-----------+--+-----+-----+-----+--+-----------+--+ |
| 6334 | * ^ |
| 6335 | * | |
| 6336 | * |
| 6337 | * msg_control |
| 6338 | * points here |
| 6339 | */ |
Daniel Borkmann | dda9192 | 2013-06-17 11:40:05 +0200 | [diff] [blame] | 6340 | static int sctp_msghdr_parse(const struct msghdr *msg, sctp_cmsgs_t *cmsgs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6341 | { |
| 6342 | struct cmsghdr *cmsg; |
Vlad Yasevich | ab38fb0 | 2008-04-12 18:40:06 -0700 | [diff] [blame] | 6343 | struct msghdr *my_msg = (struct msghdr *)msg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6344 | |
| 6345 | for (cmsg = CMSG_FIRSTHDR(msg); |
| 6346 | cmsg != NULL; |
Vlad Yasevich | ab38fb0 | 2008-04-12 18:40:06 -0700 | [diff] [blame] | 6347 | cmsg = CMSG_NXTHDR(my_msg, cmsg)) { |
| 6348 | if (!CMSG_OK(my_msg, cmsg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6349 | return -EINVAL; |
| 6350 | |
| 6351 | /* Should we parse this header or ignore? */ |
| 6352 | if (cmsg->cmsg_level != IPPROTO_SCTP) |
| 6353 | continue; |
| 6354 | |
| 6355 | /* Strictly check lengths following example in SCM code. */ |
| 6356 | switch (cmsg->cmsg_type) { |
| 6357 | case SCTP_INIT: |
| 6358 | /* SCTP Socket API Extension |
| 6359 | * 5.2.1 SCTP Initiation Structure (SCTP_INIT) |
| 6360 | * |
| 6361 | * This cmsghdr structure provides information for |
| 6362 | * initializing new SCTP associations with sendmsg(). |
| 6363 | * The SCTP_INITMSG socket option uses this same data |
| 6364 | * structure. This structure is not used for |
| 6365 | * recvmsg(). |
| 6366 | * |
| 6367 | * cmsg_level cmsg_type cmsg_data[] |
| 6368 | * ------------ ------------ ---------------------- |
| 6369 | * IPPROTO_SCTP SCTP_INIT struct sctp_initmsg |
| 6370 | */ |
| 6371 | if (cmsg->cmsg_len != |
| 6372 | CMSG_LEN(sizeof(struct sctp_initmsg))) |
| 6373 | return -EINVAL; |
| 6374 | cmsgs->init = (struct sctp_initmsg *)CMSG_DATA(cmsg); |
| 6375 | break; |
| 6376 | |
| 6377 | case SCTP_SNDRCV: |
| 6378 | /* SCTP Socket API Extension |
| 6379 | * 5.2.2 SCTP Header Information Structure(SCTP_SNDRCV) |
| 6380 | * |
| 6381 | * This cmsghdr structure specifies SCTP options for |
| 6382 | * sendmsg() and describes SCTP header information |
| 6383 | * about a received message through recvmsg(). |
| 6384 | * |
| 6385 | * cmsg_level cmsg_type cmsg_data[] |
| 6386 | * ------------ ------------ ---------------------- |
| 6387 | * IPPROTO_SCTP SCTP_SNDRCV struct sctp_sndrcvinfo |
| 6388 | */ |
| 6389 | if (cmsg->cmsg_len != |
| 6390 | CMSG_LEN(sizeof(struct sctp_sndrcvinfo))) |
| 6391 | return -EINVAL; |
| 6392 | |
| 6393 | cmsgs->info = |
| 6394 | (struct sctp_sndrcvinfo *)CMSG_DATA(cmsg); |
| 6395 | |
| 6396 | /* Minimally, validate the sinfo_flags. */ |
| 6397 | if (cmsgs->info->sinfo_flags & |
Ivan Skytte Jorgensen | eaa5c54 | 2005-10-28 15:10:00 -0700 | [diff] [blame] | 6398 | ~(SCTP_UNORDERED | SCTP_ADDR_OVER | |
| 6399 | SCTP_ABORT | SCTP_EOF)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6400 | return -EINVAL; |
| 6401 | break; |
| 6402 | |
| 6403 | default: |
| 6404 | return -EINVAL; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 6405 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6406 | } |
| 6407 | return 0; |
| 6408 | } |
| 6409 | |
| 6410 | /* |
| 6411 | * Wait for a packet.. |
| 6412 | * Note: This function is the same function as in core/datagram.c |
| 6413 | * with a few modifications to make lksctp work. |
| 6414 | */ |
| 6415 | static int sctp_wait_for_packet(struct sock * sk, int *err, long *timeo_p) |
| 6416 | { |
| 6417 | int error; |
| 6418 | DEFINE_WAIT(wait); |
| 6419 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6420 | prepare_to_wait_exclusive(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6421 | |
| 6422 | /* Socket errors? */ |
| 6423 | error = sock_error(sk); |
| 6424 | if (error) |
| 6425 | goto out; |
| 6426 | |
| 6427 | if (!skb_queue_empty(&sk->sk_receive_queue)) |
| 6428 | goto ready; |
| 6429 | |
| 6430 | /* Socket shut down? */ |
| 6431 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
| 6432 | goto out; |
| 6433 | |
| 6434 | /* Sequenced packets can come disconnected. If so we report the |
| 6435 | * problem. |
| 6436 | */ |
| 6437 | error = -ENOTCONN; |
| 6438 | |
| 6439 | /* Is there a good reason to think that we may receive some data? */ |
| 6440 | if (list_empty(&sctp_sk(sk)->ep->asocs) && !sctp_sstate(sk, LISTENING)) |
| 6441 | goto out; |
| 6442 | |
| 6443 | /* Handle signals. */ |
| 6444 | if (signal_pending(current)) |
| 6445 | goto interrupted; |
| 6446 | |
| 6447 | /* Let another process have a go. Since we are going to sleep |
| 6448 | * anyway. Note: This may cause odd behaviors if the message |
| 6449 | * does not fit in the user's buffer, but this seems to be the |
| 6450 | * only way to honor MSG_DONTWAIT realistically. |
| 6451 | */ |
| 6452 | sctp_release_sock(sk); |
| 6453 | *timeo_p = schedule_timeout(*timeo_p); |
| 6454 | sctp_lock_sock(sk); |
| 6455 | |
| 6456 | ready: |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6457 | finish_wait(sk_sleep(sk), &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6458 | return 0; |
| 6459 | |
| 6460 | interrupted: |
| 6461 | error = sock_intr_errno(*timeo_p); |
| 6462 | |
| 6463 | out: |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6464 | finish_wait(sk_sleep(sk), &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6465 | *err = error; |
| 6466 | return error; |
| 6467 | } |
| 6468 | |
| 6469 | /* Receive a datagram. |
| 6470 | * Note: This is pretty much the same routine as in core/datagram.c |
| 6471 | * with a few changes to make lksctp work. |
| 6472 | */ |
| 6473 | static struct sk_buff *sctp_skb_recv_datagram(struct sock *sk, int flags, |
| 6474 | int noblock, int *err) |
| 6475 | { |
| 6476 | int error; |
| 6477 | struct sk_buff *skb; |
| 6478 | long timeo; |
| 6479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6480 | timeo = sock_rcvtimeo(sk, noblock); |
| 6481 | |
| 6482 | SCTP_DEBUG_PRINTK("Timeout: timeo: %ld, MAX: %ld.\n", |
| 6483 | timeo, MAX_SCHEDULE_TIMEOUT); |
| 6484 | |
| 6485 | do { |
| 6486 | /* Again only user level code calls this function, |
| 6487 | * so nothing interrupt level |
| 6488 | * will suddenly eat the receive_queue. |
| 6489 | * |
| 6490 | * Look at current nfs client by the way... |
David Shwatrz | 8917a3c | 2010-12-02 09:01:55 +0000 | [diff] [blame] | 6491 | * However, this function was correct in any case. 8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6492 | */ |
| 6493 | if (flags & MSG_PEEK) { |
Herbert Xu | 1e061ab | 2005-06-18 22:56:42 -0700 | [diff] [blame] | 6494 | spin_lock_bh(&sk->sk_receive_queue.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6495 | skb = skb_peek(&sk->sk_receive_queue); |
| 6496 | if (skb) |
| 6497 | atomic_inc(&skb->users); |
Herbert Xu | 1e061ab | 2005-06-18 22:56:42 -0700 | [diff] [blame] | 6498 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6499 | } else { |
| 6500 | skb = skb_dequeue(&sk->sk_receive_queue); |
| 6501 | } |
| 6502 | |
| 6503 | if (skb) |
| 6504 | return skb; |
| 6505 | |
Neil Horman | 6736dc3 | 2005-12-02 20:30:06 -0800 | [diff] [blame] | 6506 | /* Caller is allowed not to check sk->sk_err before calling. */ |
| 6507 | error = sock_error(sk); |
| 6508 | if (error) |
| 6509 | goto no_packet; |
| 6510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6511 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
| 6512 | break; |
| 6513 | |
| 6514 | /* User doesn't want to wait. */ |
| 6515 | error = -EAGAIN; |
| 6516 | if (!timeo) |
| 6517 | goto no_packet; |
| 6518 | } while (sctp_wait_for_packet(sk, err, &timeo) == 0); |
| 6519 | |
| 6520 | return NULL; |
| 6521 | |
| 6522 | no_packet: |
| 6523 | *err = error; |
| 6524 | return NULL; |
| 6525 | } |
| 6526 | |
| 6527 | /* If sndbuf has changed, wake up per association sndbuf waiters. */ |
| 6528 | static void __sctp_write_space(struct sctp_association *asoc) |
| 6529 | { |
| 6530 | struct sock *sk = asoc->base.sk; |
| 6531 | struct socket *sock = sk->sk_socket; |
| 6532 | |
| 6533 | if ((sctp_wspace(asoc) > 0) && sock) { |
| 6534 | if (waitqueue_active(&asoc->wait)) |
| 6535 | wake_up_interruptible(&asoc->wait); |
| 6536 | |
| 6537 | if (sctp_writeable(sk)) { |
Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 6538 | wait_queue_head_t *wq = sk_sleep(sk); |
| 6539 | |
| 6540 | if (wq && waitqueue_active(wq)) |
| 6541 | wake_up_interruptible(wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6542 | |
| 6543 | /* Note that we try to include the Async I/O support |
| 6544 | * here by modeling from the current TCP/UDP code. |
| 6545 | * We have not tested with it yet. |
| 6546 | */ |
Eric Dumazet | eaefd11 | 2011-02-18 03:26:36 +0000 | [diff] [blame] | 6547 | if (!(sk->sk_shutdown & SEND_SHUTDOWN)) |
Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 6548 | sock_wake_async(sock, |
| 6549 | SOCK_WAKE_SPACE, POLL_OUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6550 | } |
| 6551 | } |
| 6552 | } |
| 6553 | |
| 6554 | /* Do accounting for the sndbuf space. |
| 6555 | * Decrement the used sndbuf space of the corresponding association by the |
| 6556 | * data size which was just transmitted(freed). |
| 6557 | */ |
| 6558 | static void sctp_wfree(struct sk_buff *skb) |
| 6559 | { |
| 6560 | struct sctp_association *asoc; |
| 6561 | struct sctp_chunk *chunk; |
| 6562 | struct sock *sk; |
| 6563 | |
| 6564 | /* Get the saved chunk pointer. */ |
| 6565 | chunk = *((struct sctp_chunk **)(skb->cb)); |
| 6566 | asoc = chunk->asoc; |
| 6567 | sk = asoc->base.sk; |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 6568 | asoc->sndbuf_used -= SCTP_DATA_SNDSIZE(chunk) + |
| 6569 | sizeof(struct sk_buff) + |
| 6570 | sizeof(struct sctp_chunk); |
| 6571 | |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 6572 | atomic_sub(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc); |
| 6573 | |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 6574 | /* |
Hideo Aoki | 3ab224b | 2007-12-31 00:11:19 -0800 | [diff] [blame] | 6575 | * This undoes what is done via sctp_set_owner_w and sk_mem_charge |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 6576 | */ |
| 6577 | sk->sk_wmem_queued -= skb->truesize; |
Hideo Aoki | 3ab224b | 2007-12-31 00:11:19 -0800 | [diff] [blame] | 6578 | sk_mem_uncharge(sk, skb->truesize); |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 6579 | |
Neil Horman | 4eb701d | 2005-04-28 12:02:04 -0700 | [diff] [blame] | 6580 | sock_wfree(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6581 | __sctp_write_space(asoc); |
| 6582 | |
| 6583 | sctp_association_put(asoc); |
| 6584 | } |
| 6585 | |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 6586 | /* Do accounting for the receive space on the socket. |
| 6587 | * Accounting for the association is done in ulpevent.c |
| 6588 | * We set this as a destructor for the cloned data skbs so that |
| 6589 | * accounting is done at the correct time. |
| 6590 | */ |
| 6591 | void sctp_sock_rfree(struct sk_buff *skb) |
| 6592 | { |
| 6593 | struct sock *sk = skb->sk; |
| 6594 | struct sctp_ulpevent *event = sctp_skb2event(skb); |
| 6595 | |
| 6596 | atomic_sub(event->rmem_len, &sk->sk_rmem_alloc); |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 6597 | |
| 6598 | /* |
Hideo Aoki | 3ab224b | 2007-12-31 00:11:19 -0800 | [diff] [blame] | 6599 | * Mimic the behavior of sock_rfree |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 6600 | */ |
Hideo Aoki | 3ab224b | 2007-12-31 00:11:19 -0800 | [diff] [blame] | 6601 | sk_mem_uncharge(sk, event->rmem_len); |
Vlad Yasevich | 331c4ee | 2006-10-09 21:34:04 -0700 | [diff] [blame] | 6602 | } |
| 6603 | |
| 6604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6605 | /* Helper function to wait for space in the sndbuf. */ |
| 6606 | static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p, |
| 6607 | size_t msg_len) |
| 6608 | { |
| 6609 | struct sock *sk = asoc->base.sk; |
| 6610 | int err = 0; |
| 6611 | long current_timeo = *timeo_p; |
| 6612 | DEFINE_WAIT(wait); |
| 6613 | |
| 6614 | SCTP_DEBUG_PRINTK("wait_for_sndbuf: asoc=%p, timeo=%ld, msg_len=%zu\n", |
YOSHIFUJI Hideaki | d808ad9 | 2007-02-09 23:25:18 +0900 | [diff] [blame] | 6615 | asoc, (long)(*timeo_p), msg_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6616 | |
| 6617 | /* Increment the association's refcnt. */ |
| 6618 | sctp_association_hold(asoc); |
| 6619 | |
| 6620 | /* Wait on the association specific sndbuf space. */ |
| 6621 | for (;;) { |
| 6622 | prepare_to_wait_exclusive(&asoc->wait, &wait, |
| 6623 | TASK_INTERRUPTIBLE); |
| 6624 | if (!*timeo_p) |
| 6625 | goto do_nonblock; |
| 6626 | if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING || |
| 6627 | asoc->base.dead) |
| 6628 | goto do_error; |
| 6629 | if (signal_pending(current)) |
| 6630 | goto do_interrupted; |
| 6631 | if (msg_len <= sctp_wspace(asoc)) |
| 6632 | break; |
| 6633 | |
| 6634 | /* Let another process have a go. Since we are going |
| 6635 | * to sleep anyway. |
| 6636 | */ |
| 6637 | sctp_release_sock(sk); |
| 6638 | current_timeo = schedule_timeout(current_timeo); |
Vladislav Yasevich | 61c9fed | 2006-05-19 11:01:18 -0700 | [diff] [blame] | 6639 | BUG_ON(sk != asoc->base.sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6640 | sctp_lock_sock(sk); |
| 6641 | |
| 6642 | *timeo_p = current_timeo; |
| 6643 | } |
| 6644 | |
| 6645 | out: |
| 6646 | finish_wait(&asoc->wait, &wait); |
| 6647 | |
| 6648 | /* Release the association's refcnt. */ |
| 6649 | sctp_association_put(asoc); |
| 6650 | |
| 6651 | return err; |
| 6652 | |
| 6653 | do_error: |
| 6654 | err = -EPIPE; |
| 6655 | goto out; |
| 6656 | |
| 6657 | do_interrupted: |
| 6658 | err = sock_intr_errno(*timeo_p); |
| 6659 | goto out; |
| 6660 | |
| 6661 | do_nonblock: |
| 6662 | err = -EAGAIN; |
| 6663 | goto out; |
| 6664 | } |
| 6665 | |
Wei Yongjun | 561b173 | 2010-04-28 08:47:18 +0000 | [diff] [blame] | 6666 | void sctp_data_ready(struct sock *sk, int len) |
| 6667 | { |
David S. Miller | 7ef5273 | 2010-05-02 21:43:40 -0700 | [diff] [blame] | 6668 | struct socket_wq *wq; |
| 6669 | |
| 6670 | rcu_read_lock(); |
| 6671 | wq = rcu_dereference(sk->sk_wq); |
| 6672 | if (wq_has_sleeper(wq)) |
| 6673 | wake_up_interruptible_sync_poll(&wq->wait, POLLIN | |
Wei Yongjun | 561b173 | 2010-04-28 08:47:18 +0000 | [diff] [blame] | 6674 | POLLRDNORM | POLLRDBAND); |
| 6675 | sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN); |
David S. Miller | 7ef5273 | 2010-05-02 21:43:40 -0700 | [diff] [blame] | 6676 | rcu_read_unlock(); |
Wei Yongjun | 561b173 | 2010-04-28 08:47:18 +0000 | [diff] [blame] | 6677 | } |
| 6678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6679 | /* If socket sndbuf has changed, wake up all per association waiters. */ |
| 6680 | void sctp_write_space(struct sock *sk) |
| 6681 | { |
| 6682 | struct sctp_association *asoc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6683 | |
| 6684 | /* Wake up the tasks in each wait queue. */ |
Robert P. J. Day | 9dbc15f | 2008-04-12 18:54:24 -0700 | [diff] [blame] | 6685 | list_for_each_entry(asoc, &((sctp_sk(sk))->ep->asocs), asocs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6686 | __sctp_write_space(asoc); |
| 6687 | } |
| 6688 | } |
| 6689 | |
| 6690 | /* Is there any sndbuf space available on the socket? |
| 6691 | * |
Neil Horman | 9bffc4a | 2005-12-19 14:24:40 -0800 | [diff] [blame] | 6692 | * Note that sk_wmem_alloc is the sum of the send buffers on all of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6693 | * associations on the same socket. For a UDP-style socket with |
| 6694 | * multiple associations, it is possible for it to be "unwriteable" |
| 6695 | * prematurely. I assume that this is acceptable because |
| 6696 | * a premature "unwriteable" is better than an accidental "writeable" which |
| 6697 | * would cause an unwanted block under certain circumstances. For the 1-1 |
| 6698 | * UDP-style sockets or TCP-style sockets, this code should work. |
| 6699 | * - Daisy |
| 6700 | */ |
| 6701 | static int sctp_writeable(struct sock *sk) |
| 6702 | { |
| 6703 | int amt = 0; |
| 6704 | |
Eric Dumazet | 31e6d36 | 2009-06-17 19:05:41 -0700 | [diff] [blame] | 6705 | amt = sk->sk_sndbuf - sk_wmem_alloc_get(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6706 | if (amt < 0) |
| 6707 | amt = 0; |
| 6708 | return amt; |
| 6709 | } |
| 6710 | |
| 6711 | /* Wait for an association to go into ESTABLISHED state. If timeout is 0, |
| 6712 | * returns immediately with EINPROGRESS. |
| 6713 | */ |
| 6714 | static int sctp_wait_for_connect(struct sctp_association *asoc, long *timeo_p) |
| 6715 | { |
| 6716 | struct sock *sk = asoc->base.sk; |
| 6717 | int err = 0; |
| 6718 | long current_timeo = *timeo_p; |
| 6719 | DEFINE_WAIT(wait); |
| 6720 | |
Harvey Harrison | 0dc4787 | 2008-03-05 20:47:47 -0800 | [diff] [blame] | 6721 | SCTP_DEBUG_PRINTK("%s: asoc=%p, timeo=%ld\n", __func__, asoc, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6722 | (long)(*timeo_p)); |
| 6723 | |
| 6724 | /* Increment the association's refcnt. */ |
| 6725 | sctp_association_hold(asoc); |
| 6726 | |
| 6727 | for (;;) { |
| 6728 | prepare_to_wait_exclusive(&asoc->wait, &wait, |
| 6729 | TASK_INTERRUPTIBLE); |
| 6730 | if (!*timeo_p) |
| 6731 | goto do_nonblock; |
| 6732 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
| 6733 | break; |
| 6734 | if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING || |
| 6735 | asoc->base.dead) |
| 6736 | goto do_error; |
| 6737 | if (signal_pending(current)) |
| 6738 | goto do_interrupted; |
| 6739 | |
| 6740 | if (sctp_state(asoc, ESTABLISHED)) |
| 6741 | break; |
| 6742 | |
| 6743 | /* Let another process have a go. Since we are going |
| 6744 | * to sleep anyway. |
| 6745 | */ |
| 6746 | sctp_release_sock(sk); |
| 6747 | current_timeo = schedule_timeout(current_timeo); |
| 6748 | sctp_lock_sock(sk); |
| 6749 | |
| 6750 | *timeo_p = current_timeo; |
| 6751 | } |
| 6752 | |
| 6753 | out: |
| 6754 | finish_wait(&asoc->wait, &wait); |
| 6755 | |
| 6756 | /* Release the association's refcnt. */ |
| 6757 | sctp_association_put(asoc); |
| 6758 | |
| 6759 | return err; |
| 6760 | |
| 6761 | do_error: |
Vlad Yasevich | 81845c2 | 2006-01-30 15:59:54 -0800 | [diff] [blame] | 6762 | if (asoc->init_err_counter + 1 > asoc->max_init_attempts) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6763 | err = -ETIMEDOUT; |
| 6764 | else |
| 6765 | err = -ECONNREFUSED; |
| 6766 | goto out; |
| 6767 | |
| 6768 | do_interrupted: |
| 6769 | err = sock_intr_errno(*timeo_p); |
| 6770 | goto out; |
| 6771 | |
| 6772 | do_nonblock: |
| 6773 | err = -EINPROGRESS; |
| 6774 | goto out; |
| 6775 | } |
| 6776 | |
| 6777 | static int sctp_wait_for_accept(struct sock *sk, long timeo) |
| 6778 | { |
| 6779 | struct sctp_endpoint *ep; |
| 6780 | int err = 0; |
| 6781 | DEFINE_WAIT(wait); |
| 6782 | |
| 6783 | ep = sctp_sk(sk)->ep; |
| 6784 | |
| 6785 | |
| 6786 | for (;;) { |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6787 | prepare_to_wait_exclusive(sk_sleep(sk), &wait, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6788 | TASK_INTERRUPTIBLE); |
| 6789 | |
| 6790 | if (list_empty(&ep->asocs)) { |
| 6791 | sctp_release_sock(sk); |
| 6792 | timeo = schedule_timeout(timeo); |
| 6793 | sctp_lock_sock(sk); |
| 6794 | } |
| 6795 | |
| 6796 | err = -EINVAL; |
| 6797 | if (!sctp_sstate(sk, LISTENING)) |
| 6798 | break; |
| 6799 | |
| 6800 | err = 0; |
| 6801 | if (!list_empty(&ep->asocs)) |
| 6802 | break; |
| 6803 | |
| 6804 | err = sock_intr_errno(timeo); |
| 6805 | if (signal_pending(current)) |
| 6806 | break; |
| 6807 | |
| 6808 | err = -EAGAIN; |
| 6809 | if (!timeo) |
| 6810 | break; |
| 6811 | } |
| 6812 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6813 | finish_wait(sk_sleep(sk), &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6814 | |
| 6815 | return err; |
| 6816 | } |
| 6817 | |
sebastian@breakpoint.cc | 0467521 | 2007-07-26 23:21:31 +0200 | [diff] [blame] | 6818 | static void sctp_wait_for_close(struct sock *sk, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6819 | { |
| 6820 | DEFINE_WAIT(wait); |
| 6821 | |
| 6822 | do { |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6823 | prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6824 | if (list_empty(&sctp_sk(sk)->ep->asocs)) |
| 6825 | break; |
| 6826 | sctp_release_sock(sk); |
| 6827 | timeout = schedule_timeout(timeout); |
| 6828 | sctp_lock_sock(sk); |
| 6829 | } while (!signal_pending(current) && timeout); |
| 6830 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 6831 | finish_wait(sk_sleep(sk), &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6832 | } |
| 6833 | |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6834 | static void sctp_skb_set_owner_r_frag(struct sk_buff *skb, struct sock *sk) |
| 6835 | { |
| 6836 | struct sk_buff *frag; |
| 6837 | |
| 6838 | if (!skb->data_len) |
| 6839 | goto done; |
| 6840 | |
| 6841 | /* Don't forget the fragments. */ |
David S. Miller | 1b003be | 2009-06-09 00:22:35 -0700 | [diff] [blame] | 6842 | skb_walk_frags(skb, frag) |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6843 | sctp_skb_set_owner_r_frag(frag, sk); |
| 6844 | |
| 6845 | done: |
| 6846 | sctp_skb_set_owner_r(skb, sk); |
| 6847 | } |
| 6848 | |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 6849 | void sctp_copy_sock(struct sock *newsk, struct sock *sk, |
| 6850 | struct sctp_association *asoc) |
| 6851 | { |
| 6852 | struct inet_sock *inet = inet_sk(sk); |
Julia Lawall | 09cb47a | 2010-01-21 02:43:20 -0800 | [diff] [blame] | 6853 | struct inet_sock *newinet; |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 6854 | |
| 6855 | newsk->sk_type = sk->sk_type; |
| 6856 | newsk->sk_bound_dev_if = sk->sk_bound_dev_if; |
| 6857 | newsk->sk_flags = sk->sk_flags; |
| 6858 | newsk->sk_no_check = sk->sk_no_check; |
| 6859 | newsk->sk_reuse = sk->sk_reuse; |
| 6860 | |
| 6861 | newsk->sk_shutdown = sk->sk_shutdown; |
Daniel Borkmann | 0a2fbac | 2013-06-25 18:17:29 +0200 | [diff] [blame] | 6862 | newsk->sk_destruct = sctp_destruct_sock; |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 6863 | newsk->sk_family = sk->sk_family; |
| 6864 | newsk->sk_protocol = IPPROTO_SCTP; |
| 6865 | newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv; |
| 6866 | newsk->sk_sndbuf = sk->sk_sndbuf; |
| 6867 | newsk->sk_rcvbuf = sk->sk_rcvbuf; |
| 6868 | newsk->sk_lingertime = sk->sk_lingertime; |
| 6869 | newsk->sk_rcvtimeo = sk->sk_rcvtimeo; |
| 6870 | newsk->sk_sndtimeo = sk->sk_sndtimeo; |
| 6871 | |
| 6872 | newinet = inet_sk(newsk); |
| 6873 | |
| 6874 | /* Initialize sk's sport, dport, rcv_saddr and daddr for |
| 6875 | * getsockname() and getpeername() |
| 6876 | */ |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6877 | newinet->inet_sport = inet->inet_sport; |
| 6878 | newinet->inet_saddr = inet->inet_saddr; |
| 6879 | newinet->inet_rcv_saddr = inet->inet_rcv_saddr; |
| 6880 | newinet->inet_dport = htons(asoc->peer.port); |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 6881 | newinet->pmtudisc = inet->pmtudisc; |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6882 | newinet->inet_id = asoc->next_tsn ^ jiffies; |
Vlad Yasevich | 914e1c8 | 2009-02-13 08:33:44 +0000 | [diff] [blame] | 6883 | |
| 6884 | newinet->uc_ttl = inet->uc_ttl; |
| 6885 | newinet->mc_loop = 1; |
| 6886 | newinet->mc_ttl = 1; |
| 6887 | newinet->mc_index = 0; |
| 6888 | newinet->mc_list = NULL; |
| 6889 | } |
| 6890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6891 | /* Populate the fields of the newsk from the oldsk and migrate the assoc |
| 6892 | * and its messages to the newsk. |
| 6893 | */ |
| 6894 | static void sctp_sock_migrate(struct sock *oldsk, struct sock *newsk, |
| 6895 | struct sctp_association *assoc, |
| 6896 | sctp_socket_type_t type) |
| 6897 | { |
| 6898 | struct sctp_sock *oldsp = sctp_sk(oldsk); |
| 6899 | struct sctp_sock *newsp = sctp_sk(newsk); |
| 6900 | struct sctp_bind_bucket *pp; /* hash list port iterator */ |
| 6901 | struct sctp_endpoint *newep = newsp->ep; |
| 6902 | struct sk_buff *skb, *tmp; |
| 6903 | struct sctp_ulpevent *event; |
Vlad Yasevich | f26f7c4 | 2007-12-06 22:50:27 -0800 | [diff] [blame] | 6904 | struct sctp_bind_hashbucket *head; |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 6905 | struct list_head tmplist; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6906 | |
| 6907 | /* Migrate socket buffer sizes and all the socket level options to the |
| 6908 | * new socket. |
| 6909 | */ |
| 6910 | newsk->sk_sndbuf = oldsk->sk_sndbuf; |
| 6911 | newsk->sk_rcvbuf = oldsk->sk_rcvbuf; |
| 6912 | /* Brute force copy old sctp opt. */ |
Michio Honda | 9f7d653 | 2011-04-26 19:32:51 +0900 | [diff] [blame] | 6913 | if (oldsp->do_auto_asconf) { |
| 6914 | memcpy(&tmplist, &newsp->auto_asconf_list, sizeof(tmplist)); |
| 6915 | inet_sk_copy_descendant(newsk, oldsk); |
| 6916 | memcpy(&newsp->auto_asconf_list, &tmplist, sizeof(tmplist)); |
| 6917 | } else |
| 6918 | inet_sk_copy_descendant(newsk, oldsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6919 | |
| 6920 | /* Restore the ep value that was overwritten with the above structure |
| 6921 | * copy. |
| 6922 | */ |
| 6923 | newsp->ep = newep; |
| 6924 | newsp->hmac = NULL; |
| 6925 | |
| 6926 | /* Hook this new socket in to the bind_hash list. */ |
Eric W. Biederman | f1f4376 | 2012-08-06 08:39:38 +0000 | [diff] [blame] | 6927 | head = &sctp_port_hashtable[sctp_phashfn(sock_net(oldsk), |
| 6928 | inet_sk(oldsk)->inet_num)]; |
Vlad Yasevich | f26f7c4 | 2007-12-06 22:50:27 -0800 | [diff] [blame] | 6929 | sctp_local_bh_disable(); |
| 6930 | sctp_spin_lock(&head->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6931 | pp = sctp_sk(oldsk)->bind_hash; |
| 6932 | sk_add_bind_node(newsk, &pp->owner); |
| 6933 | sctp_sk(newsk)->bind_hash = pp; |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 6934 | inet_sk(newsk)->inet_num = inet_sk(oldsk)->inet_num; |
Vlad Yasevich | f26f7c4 | 2007-12-06 22:50:27 -0800 | [diff] [blame] | 6935 | sctp_spin_unlock(&head->lock); |
| 6936 | sctp_local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6937 | |
Vladislav Yasevich | 4243cac | 2005-06-13 15:10:49 -0700 | [diff] [blame] | 6938 | /* Copy the bind_addr list from the original endpoint to the new |
| 6939 | * endpoint so that we can handle restarts properly |
| 6940 | */ |
Vlad Yasevich | 8e71a11 | 2007-12-06 22:50:54 -0800 | [diff] [blame] | 6941 | sctp_bind_addr_dup(&newsp->ep->base.bind_addr, |
| 6942 | &oldsp->ep->base.bind_addr, GFP_KERNEL); |
Vladislav Yasevich | 4243cac | 2005-06-13 15:10:49 -0700 | [diff] [blame] | 6943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6944 | /* Move any messages in the old socket's receive queue that are for the |
| 6945 | * peeled off association to the new socket's receive queue. |
| 6946 | */ |
| 6947 | sctp_skb_for_each(skb, &oldsk->sk_receive_queue, tmp) { |
| 6948 | event = sctp_skb2event(skb); |
| 6949 | if (event->asoc == assoc) { |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 6950 | __skb_unlink(skb, &oldsk->sk_receive_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6951 | __skb_queue_tail(&newsk->sk_receive_queue, skb); |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6952 | sctp_skb_set_owner_r_frag(skb, newsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6953 | } |
| 6954 | } |
| 6955 | |
| 6956 | /* Clean up any messages pending delivery due to partial |
| 6957 | * delivery. Three cases: |
| 6958 | * 1) No partial deliver; no work. |
| 6959 | * 2) Peeling off partial delivery; keep pd_lobby in new pd_lobby. |
| 6960 | * 3) Peeling off non-partial delivery; move pd_lobby to receive_queue. |
| 6961 | */ |
| 6962 | skb_queue_head_init(&newsp->pd_lobby); |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 6963 | atomic_set(&sctp_sk(newsk)->pd_mode, assoc->ulpq.pd_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6964 | |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 6965 | if (atomic_read(&sctp_sk(oldsk)->pd_mode)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6966 | struct sk_buff_head *queue; |
| 6967 | |
| 6968 | /* Decide which queue to move pd_lobby skbs to. */ |
| 6969 | if (assoc->ulpq.pd_mode) { |
| 6970 | queue = &newsp->pd_lobby; |
| 6971 | } else |
| 6972 | queue = &newsk->sk_receive_queue; |
| 6973 | |
| 6974 | /* Walk through the pd_lobby, looking for skbs that |
| 6975 | * need moved to the new socket. |
| 6976 | */ |
| 6977 | sctp_skb_for_each(skb, &oldsp->pd_lobby, tmp) { |
| 6978 | event = sctp_skb2event(skb); |
| 6979 | if (event->asoc == assoc) { |
David S. Miller | 8728b83 | 2005-08-09 19:25:21 -0700 | [diff] [blame] | 6980 | __skb_unlink(skb, &oldsp->pd_lobby); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6981 | __skb_queue_tail(queue, skb); |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6982 | sctp_skb_set_owner_r_frag(skb, newsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6983 | } |
| 6984 | } |
| 6985 | |
| 6986 | /* Clear up any skbs waiting for the partial |
| 6987 | * delivery to finish. |
| 6988 | */ |
| 6989 | if (assoc->ulpq.pd_mode) |
Vlad Yasevich | b6e1331 | 2007-04-20 12:23:15 -0700 | [diff] [blame] | 6990 | sctp_clear_pd(oldsk, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6991 | |
| 6992 | } |
| 6993 | |
Wei Yongjun | 1bc4ee4 | 2009-07-05 19:45:48 +0000 | [diff] [blame] | 6994 | sctp_skb_for_each(skb, &assoc->ulpq.reasm, tmp) |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6995 | sctp_skb_set_owner_r_frag(skb, newsk); |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6996 | |
Wei Yongjun | 1bc4ee4 | 2009-07-05 19:45:48 +0000 | [diff] [blame] | 6997 | sctp_skb_for_each(skb, &assoc->ulpq.lobby, tmp) |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6998 | sctp_skb_set_owner_r_frag(skb, newsk); |
Tsutomu Fujii | ea2bc48 | 2007-04-17 12:49:53 -0700 | [diff] [blame] | 6999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7000 | /* Set the type of socket to indicate that it is peeled off from the |
| 7001 | * original UDP-style socket or created with the accept() call on a |
| 7002 | * TCP-style socket.. |
| 7003 | */ |
| 7004 | newsp->type = type; |
| 7005 | |
Vladislav Yasevich | 61c9fed | 2006-05-19 11:01:18 -0700 | [diff] [blame] | 7006 | /* Mark the new socket "in-use" by the user so that any packets |
| 7007 | * that may arrive on the association after we've moved it are |
| 7008 | * queued to the backlog. This prevents a potential race between |
| 7009 | * backlog processing on the old socket and new-packet processing |
| 7010 | * on the new socket. |
Zach Brown | 5131a18 | 2007-06-22 15:14:46 -0700 | [diff] [blame] | 7011 | * |
| 7012 | * The caller has just allocated newsk so we can guarantee that other |
| 7013 | * paths won't try to lock it and then oldsk. |
Vladislav Yasevich | 61c9fed | 2006-05-19 11:01:18 -0700 | [diff] [blame] | 7014 | */ |
Zach Brown | 5131a18 | 2007-06-22 15:14:46 -0700 | [diff] [blame] | 7015 | lock_sock_nested(newsk, SINGLE_DEPTH_NESTING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7016 | sctp_assoc_migrate(assoc, newsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7017 | |
| 7018 | /* If the association on the newsk is already closed before accept() |
| 7019 | * is called, set RCV_SHUTDOWN flag. |
| 7020 | */ |
| 7021 | if (sctp_state(assoc, CLOSED) && sctp_style(newsk, TCP)) |
| 7022 | newsk->sk_shutdown |= RCV_SHUTDOWN; |
| 7023 | |
| 7024 | newsk->sk_state = SCTP_SS_ESTABLISHED; |
Vladislav Yasevich | 61c9fed | 2006-05-19 11:01:18 -0700 | [diff] [blame] | 7025 | sctp_release_sock(newsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7026 | } |
| 7027 | |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 7028 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7029 | /* This proto struct describes the ULP interface for SCTP. */ |
| 7030 | struct proto sctp_prot = { |
| 7031 | .name = "SCTP", |
| 7032 | .owner = THIS_MODULE, |
| 7033 | .close = sctp_close, |
| 7034 | .connect = sctp_connect, |
| 7035 | .disconnect = sctp_disconnect, |
| 7036 | .accept = sctp_accept, |
| 7037 | .ioctl = sctp_ioctl, |
| 7038 | .init = sctp_init_sock, |
| 7039 | .destroy = sctp_destroy_sock, |
| 7040 | .shutdown = sctp_shutdown, |
| 7041 | .setsockopt = sctp_setsockopt, |
| 7042 | .getsockopt = sctp_getsockopt, |
| 7043 | .sendmsg = sctp_sendmsg, |
| 7044 | .recvmsg = sctp_recvmsg, |
| 7045 | .bind = sctp_bind, |
| 7046 | .backlog_rcv = sctp_backlog_rcv, |
| 7047 | .hash = sctp_hash, |
| 7048 | .unhash = sctp_unhash, |
| 7049 | .get_port = sctp_get_port, |
| 7050 | .obj_size = sizeof(struct sctp_sock), |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 7051 | .sysctl_mem = sysctl_sctp_mem, |
| 7052 | .sysctl_rmem = sysctl_sctp_rmem, |
| 7053 | .sysctl_wmem = sysctl_sctp_wmem, |
| 7054 | .memory_pressure = &sctp_memory_pressure, |
| 7055 | .enter_memory_pressure = sctp_enter_memory_pressure, |
| 7056 | .memory_allocated = &sctp_memory_allocated, |
Pavel Emelyanov | 5f31886 | 2008-02-20 00:23:01 -0800 | [diff] [blame] | 7057 | .sockets_allocated = &sctp_sockets_allocated, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7058 | }; |
| 7059 | |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 7060 | #if IS_ENABLED(CONFIG_IPV6) |
Eric Dumazet | 8295b6d | 2007-11-05 23:40:28 -0800 | [diff] [blame] | 7061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7062 | struct proto sctpv6_prot = { |
| 7063 | .name = "SCTPv6", |
| 7064 | .owner = THIS_MODULE, |
| 7065 | .close = sctp_close, |
| 7066 | .connect = sctp_connect, |
| 7067 | .disconnect = sctp_disconnect, |
| 7068 | .accept = sctp_accept, |
| 7069 | .ioctl = sctp_ioctl, |
| 7070 | .init = sctp_init_sock, |
| 7071 | .destroy = sctp_destroy_sock, |
| 7072 | .shutdown = sctp_shutdown, |
| 7073 | .setsockopt = sctp_setsockopt, |
| 7074 | .getsockopt = sctp_getsockopt, |
| 7075 | .sendmsg = sctp_sendmsg, |
| 7076 | .recvmsg = sctp_recvmsg, |
| 7077 | .bind = sctp_bind, |
| 7078 | .backlog_rcv = sctp_backlog_rcv, |
| 7079 | .hash = sctp_hash, |
| 7080 | .unhash = sctp_unhash, |
| 7081 | .get_port = sctp_get_port, |
| 7082 | .obj_size = sizeof(struct sctp6_sock), |
Neil Horman | 4d93df0 | 2007-08-15 16:07:44 -0700 | [diff] [blame] | 7083 | .sysctl_mem = sysctl_sctp_mem, |
| 7084 | .sysctl_rmem = sysctl_sctp_rmem, |
| 7085 | .sysctl_wmem = sysctl_sctp_wmem, |
| 7086 | .memory_pressure = &sctp_memory_pressure, |
| 7087 | .enter_memory_pressure = sctp_enter_memory_pressure, |
| 7088 | .memory_allocated = &sctp_memory_allocated, |
Pavel Emelyanov | 5f31886 | 2008-02-20 00:23:01 -0800 | [diff] [blame] | 7089 | .sockets_allocated = &sctp_sockets_allocated, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7090 | }; |
Eric Dumazet | dfd56b8 | 2011-12-10 09:48:31 +0000 | [diff] [blame] | 7091 | #endif /* IS_ENABLED(CONFIG_IPV6) */ |