David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1 | /* AF_RXRPC implementation |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 14 | #include <linux/module.h> |
YOSHIFUJI Hideaki / 吉藤英明 | ce6654c | 2013-01-09 07:20:01 +0000 | [diff] [blame] | 15 | #include <linux/kernel.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 16 | #include <linux/net.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 18 | #include <linux/skbuff.h> |
David Howells | 5f2d9c4 | 2016-09-02 22:39:45 +0100 | [diff] [blame] | 19 | #include <linux/random.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 20 | #include <linux/poll.h> |
| 21 | #include <linux/proc_fs.h> |
David Howells | 76181c1 | 2007-10-16 23:29:46 -0700 | [diff] [blame] | 22 | #include <linux/key-type.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 23 | #include <net/net_namespace.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 24 | #include <net/sock.h> |
| 25 | #include <net/af_rxrpc.h> |
David Howells | df844fd | 2016-08-23 15:27:24 +0100 | [diff] [blame] | 26 | #define CREATE_TRACE_POINTS |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 27 | #include "ar-internal.h" |
| 28 | |
| 29 | MODULE_DESCRIPTION("RxRPC network protocol"); |
| 30 | MODULE_AUTHOR("Red Hat, Inc."); |
| 31 | MODULE_LICENSE("GPL"); |
| 32 | MODULE_ALIAS_NETPROTO(PF_RXRPC); |
| 33 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 34 | unsigned int rxrpc_debug; // = RXRPC_DEBUG_KPROTO; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 35 | module_param_named(debug, rxrpc_debug, uint, S_IWUSR | S_IRUGO); |
Paul Bolle | 424b00e | 2008-04-16 11:08:22 +0100 | [diff] [blame] | 36 | MODULE_PARM_DESC(debug, "RxRPC debugging mask"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 37 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 38 | static struct proto rxrpc_proto; |
| 39 | static const struct proto_ops rxrpc_rpc_ops; |
| 40 | |
| 41 | /* local epoch for detecting local-end reset */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 42 | u32 rxrpc_epoch; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 43 | |
| 44 | /* current debugging ID */ |
| 45 | atomic_t rxrpc_debug_id; |
| 46 | |
| 47 | /* count of skbs currently in use */ |
David Howells | 71f3ca4 | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 48 | atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 49 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 50 | struct workqueue_struct *rxrpc_workqueue; |
| 51 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 52 | static void rxrpc_sock_destructor(struct sock *); |
| 53 | |
| 54 | /* |
| 55 | * see if an RxRPC socket is currently writable |
| 56 | */ |
| 57 | static inline int rxrpc_writable(struct sock *sk) |
| 58 | { |
| 59 | return atomic_read(&sk->sk_wmem_alloc) < (size_t) sk->sk_sndbuf; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * wait for write bufferage to become available |
| 64 | */ |
| 65 | static void rxrpc_write_space(struct sock *sk) |
| 66 | { |
| 67 | _enter("%p", sk); |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 68 | rcu_read_lock(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 69 | if (rxrpc_writable(sk)) { |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 70 | struct socket_wq *wq = rcu_dereference(sk->sk_wq); |
| 71 | |
Herbert Xu | 1ce0bf5 | 2015-11-26 13:55:39 +0800 | [diff] [blame] | 72 | if (skwq_has_sleeper(wq)) |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 73 | wake_up_interruptible(&wq->wait); |
Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 74 | sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 75 | } |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 76 | rcu_read_unlock(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | * validate an RxRPC address |
| 81 | */ |
| 82 | static int rxrpc_validate_address(struct rxrpc_sock *rx, |
| 83 | struct sockaddr_rxrpc *srx, |
| 84 | int len) |
| 85 | { |
David Howells | dad8aff | 2016-03-09 23:22:56 +0000 | [diff] [blame] | 86 | unsigned int tail; |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 87 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 88 | if (len < sizeof(struct sockaddr_rxrpc)) |
| 89 | return -EINVAL; |
| 90 | |
| 91 | if (srx->srx_family != AF_RXRPC) |
| 92 | return -EAFNOSUPPORT; |
| 93 | |
| 94 | if (srx->transport_type != SOCK_DGRAM) |
| 95 | return -ESOCKTNOSUPPORT; |
| 96 | |
| 97 | len -= offsetof(struct sockaddr_rxrpc, transport); |
| 98 | if (srx->transport_len < sizeof(sa_family_t) || |
| 99 | srx->transport_len > len) |
| 100 | return -EINVAL; |
| 101 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 102 | if (srx->transport.family != rx->family) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 103 | return -EAFNOSUPPORT; |
| 104 | |
| 105 | switch (srx->transport.family) { |
| 106 | case AF_INET: |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 107 | if (srx->transport_len < sizeof(struct sockaddr_in)) |
| 108 | return -EINVAL; |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 109 | tail = offsetof(struct sockaddr_rxrpc, transport.sin.__pad); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 110 | break; |
| 111 | |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 112 | #ifdef CONFIG_AF_RXRPC_IPV6 |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 113 | case AF_INET6: |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 114 | if (srx->transport_len < sizeof(struct sockaddr_in6)) |
| 115 | return -EINVAL; |
| 116 | tail = offsetof(struct sockaddr_rxrpc, transport) + |
| 117 | sizeof(struct sockaddr_in6); |
| 118 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 119 | #endif |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 120 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 121 | default: |
| 122 | return -EAFNOSUPPORT; |
| 123 | } |
| 124 | |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 125 | if (tail < len) |
| 126 | memset((void *)srx + tail, 0, len - tail); |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 127 | _debug("INET: %pISp", &srx->transport); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | /* |
| 132 | * bind a local address to an RxRPC socket |
| 133 | */ |
| 134 | static int rxrpc_bind(struct socket *sock, struct sockaddr *saddr, int len) |
| 135 | { |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 136 | struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)saddr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 137 | struct sock *sk = sock->sk; |
| 138 | struct rxrpc_local *local; |
| 139 | struct rxrpc_sock *rx = rxrpc_sk(sk), *prx; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 140 | int ret; |
| 141 | |
| 142 | _enter("%p,%p,%d", rx, saddr, len); |
| 143 | |
| 144 | ret = rxrpc_validate_address(rx, srx, len); |
| 145 | if (ret < 0) |
| 146 | goto error; |
| 147 | |
| 148 | lock_sock(&rx->sk); |
| 149 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 150 | if (rx->sk.sk_state != RXRPC_UNBOUND) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 151 | ret = -EINVAL; |
| 152 | goto error_unlock; |
| 153 | } |
| 154 | |
| 155 | memcpy(&rx->srx, srx, sizeof(rx->srx)); |
| 156 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 157 | local = rxrpc_lookup_local(&rx->srx); |
| 158 | if (IS_ERR(local)) { |
| 159 | ret = PTR_ERR(local); |
| 160 | goto error_unlock; |
| 161 | } |
| 162 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 163 | if (rx->srx.srx_service) { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 164 | write_lock(&local->services_lock); |
David Howells | de8d6c7 | 2016-09-08 11:10:11 +0100 | [diff] [blame] | 165 | hlist_for_each_entry(prx, &local->services, listen_link) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 166 | if (prx->srx.srx_service == rx->srx.srx_service) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 167 | goto service_in_use; |
| 168 | } |
| 169 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 170 | rx->local = local; |
David Howells | de8d6c7 | 2016-09-08 11:10:11 +0100 | [diff] [blame] | 171 | hlist_add_head_rcu(&rx->listen_link, &local->services); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 172 | write_unlock(&local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 173 | |
| 174 | rx->sk.sk_state = RXRPC_SERVER_BOUND; |
| 175 | } else { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 176 | rx->local = local; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 177 | rx->sk.sk_state = RXRPC_CLIENT_BOUND; |
| 178 | } |
| 179 | |
| 180 | release_sock(&rx->sk); |
| 181 | _leave(" = 0"); |
| 182 | return 0; |
| 183 | |
| 184 | service_in_use: |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 185 | write_unlock(&local->services_lock); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 186 | rxrpc_put_local(local); |
| 187 | ret = -EADDRINUSE; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 188 | error_unlock: |
| 189 | release_sock(&rx->sk); |
| 190 | error: |
| 191 | _leave(" = %d", ret); |
| 192 | return ret; |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | * set the number of pending calls permitted on a listening socket |
| 197 | */ |
| 198 | static int rxrpc_listen(struct socket *sock, int backlog) |
| 199 | { |
| 200 | struct sock *sk = sock->sk; |
| 201 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 202 | unsigned int max, old; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 203 | int ret; |
| 204 | |
| 205 | _enter("%p,%d", rx, backlog); |
| 206 | |
| 207 | lock_sock(&rx->sk); |
| 208 | |
| 209 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 210 | case RXRPC_UNBOUND: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 211 | ret = -EADDRNOTAVAIL; |
| 212 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 213 | case RXRPC_SERVER_BOUND: |
| 214 | ASSERT(rx->local != NULL); |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 215 | max = READ_ONCE(rxrpc_max_backlog); |
| 216 | ret = -EINVAL; |
| 217 | if (backlog == INT_MAX) |
| 218 | backlog = max; |
| 219 | else if (backlog < 0 || backlog > max) |
| 220 | break; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 221 | old = sk->sk_max_ack_backlog; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 222 | sk->sk_max_ack_backlog = backlog; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 223 | ret = rxrpc_service_prealloc(rx, GFP_KERNEL); |
| 224 | if (ret == 0) |
| 225 | rx->sk.sk_state = RXRPC_SERVER_LISTENING; |
| 226 | else |
| 227 | sk->sk_max_ack_backlog = old; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 228 | break; |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 229 | default: |
| 230 | ret = -EBUSY; |
| 231 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | release_sock(&rx->sk); |
| 235 | _leave(" = %d", ret); |
| 236 | return ret; |
| 237 | } |
| 238 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 239 | /** |
| 240 | * rxrpc_kernel_begin_call - Allow a kernel service to begin a call |
| 241 | * @sock: The socket on which to make the call |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 242 | * @srx: The address of the peer to contact |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 243 | * @key: The security context to use (defaults to socket setting) |
| 244 | * @user_call_ID: The ID to use |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 245 | * @gfp: The allocation constraints |
| 246 | * @notify_rx: Where to send notifications instead of socket queue |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 247 | * |
| 248 | * Allow a kernel service to begin a call on the nominated socket. This just |
| 249 | * sets up all the internal tracking structures and allocates connection and |
| 250 | * call IDs as appropriate. The call to be used is returned. |
| 251 | * |
| 252 | * The default socket destination address and security may be overridden by |
| 253 | * supplying @srx and @key. |
| 254 | */ |
| 255 | struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *sock, |
| 256 | struct sockaddr_rxrpc *srx, |
| 257 | struct key *key, |
| 258 | unsigned long user_call_ID, |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 259 | gfp_t gfp, |
| 260 | rxrpc_notify_rx_t notify_rx) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 261 | { |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 262 | struct rxrpc_conn_parameters cp; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 263 | struct rxrpc_call *call; |
| 264 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
David Howells | f4552c2 | 2016-06-17 11:00:48 +0100 | [diff] [blame] | 265 | int ret; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 266 | |
| 267 | _enter(",,%x,%lx", key_serial(key), user_call_ID); |
| 268 | |
David Howells | f4552c2 | 2016-06-17 11:00:48 +0100 | [diff] [blame] | 269 | ret = rxrpc_validate_address(rx, srx, sizeof(*srx)); |
| 270 | if (ret < 0) |
| 271 | return ERR_PTR(ret); |
| 272 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 273 | lock_sock(&rx->sk); |
| 274 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 275 | if (!key) |
| 276 | key = rx->key; |
| 277 | if (key && !key->payload.data[0]) |
| 278 | key = NULL; /* a no-security key */ |
| 279 | |
| 280 | memset(&cp, 0, sizeof(cp)); |
| 281 | cp.local = rx->local; |
| 282 | cp.key = key; |
| 283 | cp.security_level = 0; |
| 284 | cp.exclusive = false; |
| 285 | cp.service_id = srx->srx_service; |
David Howells | aa390bb | 2016-06-17 10:06:56 +0100 | [diff] [blame] | 286 | call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, gfp); |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 287 | if (!IS_ERR(call)) |
| 288 | call->notify_rx = notify_rx; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 289 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 290 | release_sock(&rx->sk); |
| 291 | _leave(" = %p", call); |
| 292 | return call; |
| 293 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 294 | EXPORT_SYMBOL(rxrpc_kernel_begin_call); |
| 295 | |
| 296 | /** |
| 297 | * rxrpc_kernel_end_call - Allow a kernel service to end a call it was using |
David Howells | 4de48af | 2016-08-30 12:00:48 +0100 | [diff] [blame] | 298 | * @sock: The socket the call is on |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 299 | * @call: The call to end |
| 300 | * |
| 301 | * Allow a kernel service to end a call it was using. The call must be |
| 302 | * complete before this is called (the call should be aborted if necessary). |
| 303 | */ |
David Howells | 4de48af | 2016-08-30 12:00:48 +0100 | [diff] [blame] | 304 | void rxrpc_kernel_end_call(struct socket *sock, struct rxrpc_call *call) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 305 | { |
| 306 | _enter("%d{%d}", call->debug_id, atomic_read(&call->usage)); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 307 | rxrpc_release_call(rxrpc_sk(sock->sk), call); |
David Howells | cbd0089 | 2016-09-13 09:12:34 +0100 | [diff] [blame] | 308 | rxrpc_put_call(call, rxrpc_call_put_kernel); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 309 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 310 | EXPORT_SYMBOL(rxrpc_kernel_end_call); |
| 311 | |
| 312 | /** |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 313 | * rxrpc_kernel_new_call_notification - Get notifications of new calls |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 314 | * @sock: The socket to intercept received messages on |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 315 | * @notify_new_call: Function to be called when new calls appear |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 316 | * @discard_new_call: Function to discard preallocated calls |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 317 | * |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 318 | * Allow a kernel service to be given notifications about new calls. |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 319 | */ |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 320 | void rxrpc_kernel_new_call_notification( |
| 321 | struct socket *sock, |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 322 | rxrpc_notify_new_call_t notify_new_call, |
| 323 | rxrpc_discard_new_call_t discard_new_call) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 324 | { |
| 325 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
| 326 | |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 327 | rx->notify_new_call = notify_new_call; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 328 | rx->discard_new_call = discard_new_call; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 329 | } |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 330 | EXPORT_SYMBOL(rxrpc_kernel_new_call_notification); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 331 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 332 | /* |
| 333 | * connect an RxRPC socket |
| 334 | * - this just targets it at a specific destination; no actual connection |
| 335 | * negotiation takes place |
| 336 | */ |
| 337 | static int rxrpc_connect(struct socket *sock, struct sockaddr *addr, |
| 338 | int addr_len, int flags) |
| 339 | { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 340 | struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)addr; |
| 341 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 342 | int ret; |
| 343 | |
| 344 | _enter("%p,%p,%d,%d", rx, addr, addr_len, flags); |
| 345 | |
| 346 | ret = rxrpc_validate_address(rx, srx, addr_len); |
| 347 | if (ret < 0) { |
| 348 | _leave(" = %d [bad addr]", ret); |
| 349 | return ret; |
| 350 | } |
| 351 | |
| 352 | lock_sock(&rx->sk); |
| 353 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 354 | ret = -EISCONN; |
| 355 | if (test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) |
| 356 | goto error; |
| 357 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 358 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 359 | case RXRPC_UNBOUND: |
| 360 | rx->sk.sk_state = RXRPC_CLIENT_UNBOUND; |
| 361 | case RXRPC_CLIENT_UNBOUND: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 362 | case RXRPC_CLIENT_BOUND: |
| 363 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 364 | default: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 365 | ret = -EBUSY; |
| 366 | goto error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 367 | } |
| 368 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 369 | rx->connect_srx = *srx; |
| 370 | set_bit(RXRPC_SOCK_CONNECTED, &rx->flags); |
| 371 | ret = 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 372 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 373 | error: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 374 | release_sock(&rx->sk); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 375 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | /* |
| 379 | * send a message through an RxRPC socket |
| 380 | * - in a client this does a number of things: |
| 381 | * - finds/sets up a connection for the security specified (if any) |
| 382 | * - initiates a call (ID in control data) |
| 383 | * - ends the request phase of a call (if MSG_MORE is not set) |
| 384 | * - sends a call data packet |
| 385 | * - may send an abort (abort code in control data) |
| 386 | */ |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 387 | static int rxrpc_sendmsg(struct socket *sock, struct msghdr *m, size_t len) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 388 | { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 389 | struct rxrpc_local *local; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 390 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
| 391 | int ret; |
| 392 | |
| 393 | _enter(",{%d},,%zu", rx->sk.sk_state, len); |
| 394 | |
| 395 | if (m->msg_flags & MSG_OOB) |
| 396 | return -EOPNOTSUPP; |
| 397 | |
| 398 | if (m->msg_name) { |
| 399 | ret = rxrpc_validate_address(rx, m->msg_name, m->msg_namelen); |
| 400 | if (ret < 0) { |
| 401 | _leave(" = %d [bad addr]", ret); |
| 402 | return ret; |
| 403 | } |
| 404 | } |
| 405 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 406 | lock_sock(&rx->sk); |
| 407 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 408 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 409 | case RXRPC_UNBOUND: |
David Howells | cd5892c | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 410 | rx->srx.srx_family = AF_RXRPC; |
| 411 | rx->srx.srx_service = 0; |
| 412 | rx->srx.transport_type = SOCK_DGRAM; |
| 413 | rx->srx.transport.family = rx->family; |
| 414 | switch (rx->family) { |
| 415 | case AF_INET: |
| 416 | rx->srx.transport_len = sizeof(struct sockaddr_in); |
| 417 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 418 | #ifdef CONFIG_AF_RXRPC_IPV6 |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 419 | case AF_INET6: |
| 420 | rx->srx.transport_len = sizeof(struct sockaddr_in6); |
| 421 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 422 | #endif |
David Howells | cd5892c | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 423 | default: |
| 424 | ret = -EAFNOSUPPORT; |
| 425 | goto error_unlock; |
| 426 | } |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 427 | local = rxrpc_lookup_local(&rx->srx); |
| 428 | if (IS_ERR(local)) { |
| 429 | ret = PTR_ERR(local); |
| 430 | goto error_unlock; |
| 431 | } |
| 432 | |
| 433 | rx->local = local; |
| 434 | rx->sk.sk_state = RXRPC_CLIENT_UNBOUND; |
| 435 | /* Fall through */ |
| 436 | |
| 437 | case RXRPC_CLIENT_UNBOUND: |
| 438 | case RXRPC_CLIENT_BOUND: |
| 439 | if (!m->msg_name && |
| 440 | test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) { |
| 441 | m->msg_name = &rx->connect_srx; |
| 442 | m->msg_namelen = sizeof(rx->connect_srx); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 443 | } |
| 444 | case RXRPC_SERVER_BOUND: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 445 | case RXRPC_SERVER_LISTENING: |
| 446 | ret = rxrpc_do_sendmsg(rx, m, len); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 447 | break; |
| 448 | default: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 449 | ret = -EINVAL; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 450 | break; |
| 451 | } |
| 452 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 453 | error_unlock: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 454 | release_sock(&rx->sk); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 455 | _leave(" = %d", ret); |
| 456 | return ret; |
| 457 | } |
| 458 | |
| 459 | /* |
| 460 | * set RxRPC socket options |
| 461 | */ |
| 462 | static int rxrpc_setsockopt(struct socket *sock, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 463 | char __user *optval, unsigned int optlen) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 464 | { |
| 465 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 466 | unsigned int min_sec_level; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 467 | int ret; |
| 468 | |
| 469 | _enter(",%d,%d,,%d", level, optname, optlen); |
| 470 | |
| 471 | lock_sock(&rx->sk); |
| 472 | ret = -EOPNOTSUPP; |
| 473 | |
| 474 | if (level == SOL_RXRPC) { |
| 475 | switch (optname) { |
| 476 | case RXRPC_EXCLUSIVE_CONNECTION: |
| 477 | ret = -EINVAL; |
| 478 | if (optlen != 0) |
| 479 | goto error; |
| 480 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 481 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 482 | goto error; |
David Howells | cc8feb8 | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 483 | rx->exclusive = true; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 484 | goto success; |
| 485 | |
| 486 | case RXRPC_SECURITY_KEY: |
| 487 | ret = -EINVAL; |
| 488 | if (rx->key) |
| 489 | goto error; |
| 490 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 491 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 492 | goto error; |
| 493 | ret = rxrpc_request_key(rx, optval, optlen); |
| 494 | goto error; |
| 495 | |
| 496 | case RXRPC_SECURITY_KEYRING: |
| 497 | ret = -EINVAL; |
| 498 | if (rx->key) |
| 499 | goto error; |
| 500 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 501 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 502 | goto error; |
| 503 | ret = rxrpc_server_keyring(rx, optval, optlen); |
| 504 | goto error; |
| 505 | |
| 506 | case RXRPC_MIN_SECURITY_LEVEL: |
| 507 | ret = -EINVAL; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 508 | if (optlen != sizeof(unsigned int)) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 509 | goto error; |
| 510 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 511 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 512 | goto error; |
| 513 | ret = get_user(min_sec_level, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 514 | (unsigned int __user *) optval); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 515 | if (ret < 0) |
| 516 | goto error; |
| 517 | ret = -EINVAL; |
| 518 | if (min_sec_level > RXRPC_SECURITY_MAX) |
| 519 | goto error; |
| 520 | rx->min_sec_level = min_sec_level; |
| 521 | goto success; |
| 522 | |
| 523 | default: |
| 524 | break; |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | success: |
| 529 | ret = 0; |
| 530 | error: |
| 531 | release_sock(&rx->sk); |
| 532 | return ret; |
| 533 | } |
| 534 | |
| 535 | /* |
| 536 | * permit an RxRPC socket to be polled |
| 537 | */ |
| 538 | static unsigned int rxrpc_poll(struct file *file, struct socket *sock, |
| 539 | poll_table *wait) |
| 540 | { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 541 | struct sock *sk = sock->sk; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 542 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
| 543 | unsigned int mask; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 544 | |
Eric Dumazet | aa39514 | 2010-04-20 13:03:51 +0000 | [diff] [blame] | 545 | sock_poll_wait(file, sk_sleep(sk), wait); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 546 | mask = 0; |
| 547 | |
| 548 | /* the socket is readable if there are any messages waiting on the Rx |
| 549 | * queue */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 550 | if (!list_empty(&rx->recvmsg_q)) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 551 | mask |= POLLIN | POLLRDNORM; |
| 552 | |
| 553 | /* the socket is writable if there is space to add new data to the |
| 554 | * socket; there is no guarantee that any particular call in progress |
| 555 | * on the socket may have space in the Tx ACK window */ |
| 556 | if (rxrpc_writable(sk)) |
| 557 | mask |= POLLOUT | POLLWRNORM; |
| 558 | |
| 559 | return mask; |
| 560 | } |
| 561 | |
| 562 | /* |
| 563 | * create an RxRPC socket |
| 564 | */ |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 565 | static int rxrpc_create(struct net *net, struct socket *sock, int protocol, |
| 566 | int kern) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 567 | { |
| 568 | struct rxrpc_sock *rx; |
| 569 | struct sock *sk; |
| 570 | |
| 571 | _enter("%p,%d", sock, protocol); |
| 572 | |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 573 | if (!net_eq(net, &init_net)) |
Eric W. Biederman | 1b8d7ae | 2007-10-08 23:24:22 -0700 | [diff] [blame] | 574 | return -EAFNOSUPPORT; |
| 575 | |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 576 | /* we support transport protocol UDP/UDP6 only */ |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 577 | if (protocol != PF_INET && |
| 578 | IS_ENABLED(CONFIG_AF_RXRPC_IPV6) && protocol != PF_INET6) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 579 | return -EPROTONOSUPPORT; |
| 580 | |
| 581 | if (sock->type != SOCK_DGRAM) |
| 582 | return -ESOCKTNOSUPPORT; |
| 583 | |
| 584 | sock->ops = &rxrpc_rpc_ops; |
| 585 | sock->state = SS_UNCONNECTED; |
| 586 | |
Eric W. Biederman | 11aa9c2 | 2015-05-08 21:09:13 -0500 | [diff] [blame] | 587 | sk = sk_alloc(net, PF_RXRPC, GFP_KERNEL, &rxrpc_proto, kern); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 588 | if (!sk) |
| 589 | return -ENOMEM; |
| 590 | |
| 591 | sock_init_data(sock, sk); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 592 | sock_set_flag(sk, SOCK_RCU_FREE); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 593 | sk->sk_state = RXRPC_UNBOUND; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 594 | sk->sk_write_space = rxrpc_write_space; |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 595 | sk->sk_max_ack_backlog = 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 596 | sk->sk_destruct = rxrpc_sock_destructor; |
| 597 | |
| 598 | rx = rxrpc_sk(sk); |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 599 | rx->family = protocol; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 600 | rx->calls = RB_ROOT; |
| 601 | |
David Howells | de8d6c7 | 2016-09-08 11:10:11 +0100 | [diff] [blame] | 602 | INIT_HLIST_NODE(&rx->listen_link); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 603 | spin_lock_init(&rx->incoming_lock); |
| 604 | INIT_LIST_HEAD(&rx->sock_calls); |
| 605 | INIT_LIST_HEAD(&rx->to_be_accepted); |
| 606 | INIT_LIST_HEAD(&rx->recvmsg_q); |
| 607 | rwlock_init(&rx->recvmsg_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 608 | rwlock_init(&rx->call_lock); |
| 609 | memset(&rx->srx, 0, sizeof(rx->srx)); |
| 610 | |
| 611 | _leave(" = 0 [%p]", rx); |
| 612 | return 0; |
| 613 | } |
| 614 | |
| 615 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 616 | * Kill all the calls on a socket and shut it down. |
| 617 | */ |
| 618 | static int rxrpc_shutdown(struct socket *sock, int flags) |
| 619 | { |
| 620 | struct sock *sk = sock->sk; |
| 621 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
| 622 | int ret = 0; |
| 623 | |
| 624 | _enter("%p,%d", sk, flags); |
| 625 | |
| 626 | if (flags != SHUT_RDWR) |
| 627 | return -EOPNOTSUPP; |
| 628 | if (sk->sk_state == RXRPC_CLOSE) |
| 629 | return -ESHUTDOWN; |
| 630 | |
| 631 | lock_sock(sk); |
| 632 | |
| 633 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 634 | if (sk->sk_state < RXRPC_CLOSE) { |
| 635 | sk->sk_state = RXRPC_CLOSE; |
| 636 | sk->sk_shutdown = SHUTDOWN_MASK; |
| 637 | } else { |
| 638 | ret = -ESHUTDOWN; |
| 639 | } |
| 640 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 641 | |
| 642 | rxrpc_discard_prealloc(rx); |
| 643 | |
| 644 | release_sock(sk); |
| 645 | return ret; |
| 646 | } |
| 647 | |
| 648 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 649 | * RxRPC socket destructor |
| 650 | */ |
| 651 | static void rxrpc_sock_destructor(struct sock *sk) |
| 652 | { |
| 653 | _enter("%p", sk); |
| 654 | |
| 655 | rxrpc_purge_queue(&sk->sk_receive_queue); |
| 656 | |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 657 | WARN_ON(atomic_read(&sk->sk_wmem_alloc)); |
| 658 | WARN_ON(!sk_unhashed(sk)); |
| 659 | WARN_ON(sk->sk_socket); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 660 | |
| 661 | if (!sock_flag(sk, SOCK_DEAD)) { |
| 662 | printk("Attempt to release alive rxrpc socket: %p\n", sk); |
| 663 | return; |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | /* |
| 668 | * release an RxRPC socket |
| 669 | */ |
| 670 | static int rxrpc_release_sock(struct sock *sk) |
| 671 | { |
| 672 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
| 673 | |
| 674 | _enter("%p{%d,%d}", sk, sk->sk_state, atomic_read(&sk->sk_refcnt)); |
| 675 | |
| 676 | /* declare the socket closed for business */ |
| 677 | sock_orphan(sk); |
| 678 | sk->sk_shutdown = SHUTDOWN_MASK; |
| 679 | |
| 680 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 681 | sk->sk_state = RXRPC_CLOSE; |
| 682 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 683 | |
| 684 | ASSERTCMP(rx->listen_link.next, !=, LIST_POISON1); |
| 685 | |
David Howells | de8d6c7 | 2016-09-08 11:10:11 +0100 | [diff] [blame] | 686 | if (!hlist_unhashed(&rx->listen_link)) { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 687 | write_lock(&rx->local->services_lock); |
David Howells | de8d6c7 | 2016-09-08 11:10:11 +0100 | [diff] [blame] | 688 | hlist_del_rcu(&rx->listen_link); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 689 | write_unlock(&rx->local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | /* try to flush out this socket */ |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 693 | rxrpc_discard_prealloc(rx); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 694 | rxrpc_release_calls_on_socket(rx); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 695 | flush_workqueue(rxrpc_workqueue); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 696 | rxrpc_purge_queue(&sk->sk_receive_queue); |
| 697 | |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 698 | rxrpc_put_local(rx->local); |
| 699 | rx->local = NULL; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 700 | key_put(rx->key); |
| 701 | rx->key = NULL; |
| 702 | key_put(rx->securities); |
| 703 | rx->securities = NULL; |
| 704 | sock_put(sk); |
| 705 | |
| 706 | _leave(" = 0"); |
| 707 | return 0; |
| 708 | } |
| 709 | |
| 710 | /* |
| 711 | * release an RxRPC BSD socket on close() or equivalent |
| 712 | */ |
| 713 | static int rxrpc_release(struct socket *sock) |
| 714 | { |
| 715 | struct sock *sk = sock->sk; |
| 716 | |
| 717 | _enter("%p{%p}", sock, sk); |
| 718 | |
| 719 | if (!sk) |
| 720 | return 0; |
| 721 | |
| 722 | sock->sk = NULL; |
| 723 | |
| 724 | return rxrpc_release_sock(sk); |
| 725 | } |
| 726 | |
| 727 | /* |
| 728 | * RxRPC network protocol |
| 729 | */ |
| 730 | static const struct proto_ops rxrpc_rpc_ops = { |
David Howells | e33b3d9 | 2016-03-04 15:54:27 +0000 | [diff] [blame] | 731 | .family = PF_RXRPC, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 732 | .owner = THIS_MODULE, |
| 733 | .release = rxrpc_release, |
| 734 | .bind = rxrpc_bind, |
| 735 | .connect = rxrpc_connect, |
| 736 | .socketpair = sock_no_socketpair, |
| 737 | .accept = sock_no_accept, |
| 738 | .getname = sock_no_getname, |
| 739 | .poll = rxrpc_poll, |
| 740 | .ioctl = sock_no_ioctl, |
| 741 | .listen = rxrpc_listen, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 742 | .shutdown = rxrpc_shutdown, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 743 | .setsockopt = rxrpc_setsockopt, |
| 744 | .getsockopt = sock_no_getsockopt, |
| 745 | .sendmsg = rxrpc_sendmsg, |
| 746 | .recvmsg = rxrpc_recvmsg, |
| 747 | .mmap = sock_no_mmap, |
| 748 | .sendpage = sock_no_sendpage, |
| 749 | }; |
| 750 | |
| 751 | static struct proto rxrpc_proto = { |
| 752 | .name = "RXRPC", |
| 753 | .owner = THIS_MODULE, |
| 754 | .obj_size = sizeof(struct rxrpc_sock), |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 755 | .max_header = sizeof(struct rxrpc_wire_header), |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 756 | }; |
| 757 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 758 | static const struct net_proto_family rxrpc_family_ops = { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 759 | .family = PF_RXRPC, |
| 760 | .create = rxrpc_create, |
| 761 | .owner = THIS_MODULE, |
| 762 | }; |
| 763 | |
| 764 | /* |
| 765 | * initialise and register the RxRPC protocol |
| 766 | */ |
| 767 | static int __init af_rxrpc_init(void) |
| 768 | { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 769 | int ret = -1; |
| 770 | |
YOSHIFUJI Hideaki / 吉藤英明 | ce6654c | 2013-01-09 07:20:01 +0000 | [diff] [blame] | 771 | BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > FIELD_SIZEOF(struct sk_buff, cb)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 772 | |
David Howells | 5f2d9c4 | 2016-09-02 22:39:45 +0100 | [diff] [blame] | 773 | get_random_bytes(&rxrpc_epoch, sizeof(rxrpc_epoch)); |
| 774 | rxrpc_epoch |= RXRPC_RANDOM_EPOCH; |
| 775 | get_random_bytes(&rxrpc_client_conn_ids.cur, |
| 776 | sizeof(rxrpc_client_conn_ids.cur)); |
| 777 | rxrpc_client_conn_ids.cur &= 0x3fffffff; |
| 778 | if (rxrpc_client_conn_ids.cur == 0) |
| 779 | rxrpc_client_conn_ids.cur = 1; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 780 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 781 | ret = -ENOMEM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 782 | rxrpc_call_jar = kmem_cache_create( |
| 783 | "rxrpc_call_jar", sizeof(struct rxrpc_call), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 784 | SLAB_HWCACHE_ALIGN, NULL); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 785 | if (!rxrpc_call_jar) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 786 | pr_notice("Failed to allocate call jar\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 787 | goto error_call_jar; |
| 788 | } |
| 789 | |
Tejun Heo | e1fcc7e | 2011-01-14 15:56:31 +0000 | [diff] [blame] | 790 | rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 791 | if (!rxrpc_workqueue) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 792 | pr_notice("Failed to allocate work queue\n"); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 793 | goto error_work_queue; |
| 794 | } |
| 795 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 796 | ret = rxrpc_init_security(); |
| 797 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 798 | pr_crit("Cannot initialise security\n"); |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 799 | goto error_security; |
| 800 | } |
| 801 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 802 | ret = proto_register(&rxrpc_proto, 1); |
YOSHIFUJI Hideaki | 1c89964 | 2007-07-19 10:44:44 +0900 | [diff] [blame] | 803 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 804 | pr_crit("Cannot register protocol\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 805 | goto error_proto; |
| 806 | } |
| 807 | |
| 808 | ret = sock_register(&rxrpc_family_ops); |
| 809 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 810 | pr_crit("Cannot register socket family\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 811 | goto error_sock; |
| 812 | } |
| 813 | |
| 814 | ret = register_key_type(&key_type_rxrpc); |
| 815 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 816 | pr_crit("Cannot register client key type\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 817 | goto error_key_type; |
| 818 | } |
| 819 | |
| 820 | ret = register_key_type(&key_type_rxrpc_s); |
| 821 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 822 | pr_crit("Cannot register server key type\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 823 | goto error_key_type_s; |
| 824 | } |
| 825 | |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 826 | ret = rxrpc_sysctl_init(); |
| 827 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 828 | pr_crit("Cannot register sysctls\n"); |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 829 | goto error_sysctls; |
| 830 | } |
| 831 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 832 | #ifdef CONFIG_PROC_FS |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 833 | proc_create("rxrpc_calls", 0, init_net.proc_net, &rxrpc_call_seq_fops); |
| 834 | proc_create("rxrpc_conns", 0, init_net.proc_net, |
| 835 | &rxrpc_connection_seq_fops); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 836 | #endif |
| 837 | return 0; |
| 838 | |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 839 | error_sysctls: |
| 840 | unregister_key_type(&key_type_rxrpc_s); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 841 | error_key_type_s: |
| 842 | unregister_key_type(&key_type_rxrpc); |
| 843 | error_key_type: |
| 844 | sock_unregister(PF_RXRPC); |
| 845 | error_sock: |
| 846 | proto_unregister(&rxrpc_proto); |
| 847 | error_proto: |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 848 | rxrpc_exit_security(); |
Wei Yongjun | 8addc04 | 2016-07-12 11:21:17 +0000 | [diff] [blame] | 849 | error_security: |
| 850 | destroy_workqueue(rxrpc_workqueue); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 851 | error_work_queue: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 852 | kmem_cache_destroy(rxrpc_call_jar); |
| 853 | error_call_jar: |
| 854 | return ret; |
| 855 | } |
| 856 | |
| 857 | /* |
| 858 | * unregister the RxRPC protocol |
| 859 | */ |
| 860 | static void __exit af_rxrpc_exit(void) |
| 861 | { |
| 862 | _enter(""); |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 863 | rxrpc_sysctl_exit(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 864 | unregister_key_type(&key_type_rxrpc_s); |
| 865 | unregister_key_type(&key_type_rxrpc); |
| 866 | sock_unregister(PF_RXRPC); |
| 867 | proto_unregister(&rxrpc_proto); |
| 868 | rxrpc_destroy_all_calls(); |
| 869 | rxrpc_destroy_all_connections(); |
David Howells | 71f3ca4 | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 870 | ASSERTCMP(atomic_read(&rxrpc_n_tx_skbs), ==, 0); |
| 871 | ASSERTCMP(atomic_read(&rxrpc_n_rx_skbs), ==, 0); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 872 | rxrpc_destroy_all_locals(); |
| 873 | |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 874 | remove_proc_entry("rxrpc_conns", init_net.proc_net); |
| 875 | remove_proc_entry("rxrpc_calls", init_net.proc_net); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 876 | destroy_workqueue(rxrpc_workqueue); |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 877 | rxrpc_exit_security(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 878 | kmem_cache_destroy(rxrpc_call_jar); |
| 879 | _leave(""); |
| 880 | } |
| 881 | |
| 882 | module_init(af_rxrpc_init); |
| 883 | module_exit(af_rxrpc_exit); |