Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | /* AF_RXRPC implementation |
| 3 | * |
| 4 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
YOSHIFUJI Hideaki / 吉藤英明 | ce6654c | 2013-01-09 07:20:01 +0000 | [diff] [blame] | 11 | #include <linux/kernel.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 12 | #include <linux/net.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 14 | #include <linux/skbuff.h> |
David Howells | 5f2d9c4 | 2016-09-02 22:39:45 +0100 | [diff] [blame] | 15 | #include <linux/random.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 16 | #include <linux/poll.h> |
| 17 | #include <linux/proc_fs.h> |
David Howells | 76181c1 | 2007-10-16 23:29:46 -0700 | [diff] [blame] | 18 | #include <linux/key-type.h> |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 19 | #include <net/net_namespace.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 20 | #include <net/sock.h> |
| 21 | #include <net/af_rxrpc.h> |
David Howells | df844fd | 2016-08-23 15:27:24 +0100 | [diff] [blame] | 22 | #define CREATE_TRACE_POINTS |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 23 | #include "ar-internal.h" |
| 24 | |
| 25 | MODULE_DESCRIPTION("RxRPC network protocol"); |
| 26 | MODULE_AUTHOR("Red Hat, Inc."); |
| 27 | MODULE_LICENSE("GPL"); |
| 28 | MODULE_ALIAS_NETPROTO(PF_RXRPC); |
| 29 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 30 | unsigned int rxrpc_debug; // = RXRPC_DEBUG_KPROTO; |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 31 | module_param_named(debug, rxrpc_debug, uint, 0644); |
Paul Bolle | 424b00e | 2008-04-16 11:08:22 +0100 | [diff] [blame] | 32 | MODULE_PARM_DESC(debug, "RxRPC debugging mask"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 33 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 34 | static struct proto rxrpc_proto; |
| 35 | static const struct proto_ops rxrpc_rpc_ops; |
| 36 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 37 | /* current debugging ID */ |
| 38 | atomic_t rxrpc_debug_id; |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 39 | EXPORT_SYMBOL(rxrpc_debug_id); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 40 | |
| 41 | /* count of skbs currently in use */ |
David Howells | 71f3ca4 | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 42 | atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 43 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 44 | struct workqueue_struct *rxrpc_workqueue; |
| 45 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 46 | static void rxrpc_sock_destructor(struct sock *); |
| 47 | |
| 48 | /* |
| 49 | * see if an RxRPC socket is currently writable |
| 50 | */ |
| 51 | static inline int rxrpc_writable(struct sock *sk) |
| 52 | { |
Reshetova, Elena | 14afee4 | 2017-06-30 13:08:00 +0300 | [diff] [blame] | 53 | return refcount_read(&sk->sk_wmem_alloc) < (size_t) sk->sk_sndbuf; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | /* |
| 57 | * wait for write bufferage to become available |
| 58 | */ |
| 59 | static void rxrpc_write_space(struct sock *sk) |
| 60 | { |
| 61 | _enter("%p", sk); |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 62 | rcu_read_lock(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 63 | if (rxrpc_writable(sk)) { |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 64 | struct socket_wq *wq = rcu_dereference(sk->sk_wq); |
| 65 | |
Herbert Xu | 1ce0bf5 | 2015-11-26 13:55:39 +0800 | [diff] [blame] | 66 | if (skwq_has_sleeper(wq)) |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 67 | wake_up_interruptible(&wq->wait); |
Pavel Emelyanov | 8d8ad9d | 2007-11-26 20:10:50 +0800 | [diff] [blame] | 68 | sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 69 | } |
Eric Dumazet | 4381548 | 2010-04-29 11:01:49 +0000 | [diff] [blame] | 70 | rcu_read_unlock(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | /* |
| 74 | * validate an RxRPC address |
| 75 | */ |
| 76 | static int rxrpc_validate_address(struct rxrpc_sock *rx, |
| 77 | struct sockaddr_rxrpc *srx, |
| 78 | int len) |
| 79 | { |
David Howells | dad8aff | 2016-03-09 23:22:56 +0000 | [diff] [blame] | 80 | unsigned int tail; |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 81 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 82 | if (len < sizeof(struct sockaddr_rxrpc)) |
| 83 | return -EINVAL; |
| 84 | |
| 85 | if (srx->srx_family != AF_RXRPC) |
| 86 | return -EAFNOSUPPORT; |
| 87 | |
| 88 | if (srx->transport_type != SOCK_DGRAM) |
| 89 | return -ESOCKTNOSUPPORT; |
| 90 | |
| 91 | len -= offsetof(struct sockaddr_rxrpc, transport); |
| 92 | if (srx->transport_len < sizeof(sa_family_t) || |
| 93 | srx->transport_len > len) |
| 94 | return -EINVAL; |
| 95 | |
David Howells | 46894a1 | 2018-10-04 09:32:28 +0100 | [diff] [blame] | 96 | if (srx->transport.family != rx->family && |
| 97 | srx->transport.family == AF_INET && rx->family != AF_INET6) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 98 | return -EAFNOSUPPORT; |
| 99 | |
| 100 | switch (srx->transport.family) { |
| 101 | case AF_INET: |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 102 | if (srx->transport_len < sizeof(struct sockaddr_in)) |
| 103 | return -EINVAL; |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 104 | tail = offsetof(struct sockaddr_rxrpc, transport.sin.__pad); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 105 | break; |
| 106 | |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 107 | #ifdef CONFIG_AF_RXRPC_IPV6 |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 108 | case AF_INET6: |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 109 | if (srx->transport_len < sizeof(struct sockaddr_in6)) |
| 110 | return -EINVAL; |
| 111 | tail = offsetof(struct sockaddr_rxrpc, transport) + |
| 112 | sizeof(struct sockaddr_in6); |
| 113 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 114 | #endif |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 115 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 116 | default: |
| 117 | return -EAFNOSUPPORT; |
| 118 | } |
| 119 | |
David Howells | ab802ee | 2016-03-04 15:59:49 +0000 | [diff] [blame] | 120 | if (tail < len) |
| 121 | memset((void *)srx + tail, 0, len - tail); |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 122 | _debug("INET: %pISp", &srx->transport); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | /* |
| 127 | * bind a local address to an RxRPC socket |
| 128 | */ |
| 129 | static int rxrpc_bind(struct socket *sock, struct sockaddr *saddr, int len) |
| 130 | { |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 131 | struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)saddr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 132 | struct rxrpc_local *local; |
David Howells | 68d6d1a | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 133 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
Tetsuo Handa | a9107a1 | 2019-04-12 19:54:05 +0900 | [diff] [blame] | 134 | u16 service_id; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 135 | int ret; |
| 136 | |
| 137 | _enter("%p,%p,%d", rx, saddr, len); |
| 138 | |
| 139 | ret = rxrpc_validate_address(rx, srx, len); |
| 140 | if (ret < 0) |
| 141 | goto error; |
Tetsuo Handa | a9107a1 | 2019-04-12 19:54:05 +0900 | [diff] [blame] | 142 | service_id = srx->srx_service; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 143 | |
| 144 | lock_sock(&rx->sk); |
| 145 | |
David Howells | 28036f4 | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 146 | switch (rx->sk.sk_state) { |
| 147 | case RXRPC_UNBOUND: |
| 148 | rx->srx = *srx; |
| 149 | local = rxrpc_lookup_local(sock_net(&rx->sk), &rx->srx); |
| 150 | if (IS_ERR(local)) { |
| 151 | ret = PTR_ERR(local); |
| 152 | goto error_unlock; |
| 153 | } |
| 154 | |
| 155 | if (service_id) { |
| 156 | write_lock(&local->services_lock); |
| 157 | if (rcu_access_pointer(local->service)) |
| 158 | goto service_in_use; |
| 159 | rx->local = local; |
| 160 | rcu_assign_pointer(local->service, rx); |
| 161 | write_unlock(&local->services_lock); |
| 162 | |
| 163 | rx->sk.sk_state = RXRPC_SERVER_BOUND; |
| 164 | } else { |
| 165 | rx->local = local; |
| 166 | rx->sk.sk_state = RXRPC_CLIENT_BOUND; |
| 167 | } |
| 168 | break; |
| 169 | |
| 170 | case RXRPC_SERVER_BOUND: |
| 171 | ret = -EINVAL; |
| 172 | if (service_id == 0) |
| 173 | goto error_unlock; |
| 174 | ret = -EADDRINUSE; |
| 175 | if (service_id == rx->srx.srx_service) |
| 176 | goto error_unlock; |
| 177 | ret = -EINVAL; |
| 178 | srx->srx_service = rx->srx.srx_service; |
| 179 | if (memcmp(srx, &rx->srx, sizeof(*srx)) != 0) |
| 180 | goto error_unlock; |
| 181 | rx->second_service = service_id; |
| 182 | rx->sk.sk_state = RXRPC_SERVER_BOUND2; |
| 183 | break; |
| 184 | |
| 185 | default: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 186 | ret = -EINVAL; |
| 187 | goto error_unlock; |
| 188 | } |
| 189 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 190 | release_sock(&rx->sk); |
| 191 | _leave(" = 0"); |
| 192 | return 0; |
| 193 | |
| 194 | service_in_use: |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 195 | write_unlock(&local->services_lock); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 196 | rxrpc_put_local(local); |
| 197 | ret = -EADDRINUSE; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 198 | error_unlock: |
| 199 | release_sock(&rx->sk); |
| 200 | error: |
| 201 | _leave(" = %d", ret); |
| 202 | return ret; |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | * set the number of pending calls permitted on a listening socket |
| 207 | */ |
| 208 | static int rxrpc_listen(struct socket *sock, int backlog) |
| 209 | { |
| 210 | struct sock *sk = sock->sk; |
| 211 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 212 | unsigned int max, old; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 213 | int ret; |
| 214 | |
| 215 | _enter("%p,%d", rx, backlog); |
| 216 | |
| 217 | lock_sock(&rx->sk); |
| 218 | |
| 219 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 220 | case RXRPC_UNBOUND: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 221 | ret = -EADDRNOTAVAIL; |
| 222 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 223 | case RXRPC_SERVER_BOUND: |
David Howells | 28036f4 | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 224 | case RXRPC_SERVER_BOUND2: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 225 | ASSERT(rx->local != NULL); |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 226 | max = READ_ONCE(rxrpc_max_backlog); |
| 227 | ret = -EINVAL; |
| 228 | if (backlog == INT_MAX) |
| 229 | backlog = max; |
| 230 | else if (backlog < 0 || backlog > max) |
| 231 | break; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 232 | old = sk->sk_max_ack_backlog; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 233 | sk->sk_max_ack_backlog = backlog; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 234 | ret = rxrpc_service_prealloc(rx, GFP_KERNEL); |
| 235 | if (ret == 0) |
| 236 | rx->sk.sk_state = RXRPC_SERVER_LISTENING; |
| 237 | else |
| 238 | sk->sk_max_ack_backlog = old; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 239 | break; |
David Howells | 210f035 | 2017-01-05 10:38:36 +0000 | [diff] [blame] | 240 | case RXRPC_SERVER_LISTENING: |
| 241 | if (backlog == 0) { |
| 242 | rx->sk.sk_state = RXRPC_SERVER_LISTEN_DISABLED; |
| 243 | sk->sk_max_ack_backlog = 0; |
| 244 | rxrpc_discard_prealloc(rx); |
| 245 | ret = 0; |
| 246 | break; |
| 247 | } |
Gustavo A. R. Silva | e3cf3970 | 2017-10-19 16:54:48 -0500 | [diff] [blame] | 248 | /* Fall through */ |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 249 | default: |
| 250 | ret = -EBUSY; |
| 251 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | release_sock(&rx->sk); |
| 255 | _leave(" = %d", ret); |
| 256 | return ret; |
| 257 | } |
| 258 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 259 | /** |
| 260 | * rxrpc_kernel_begin_call - Allow a kernel service to begin a call |
| 261 | * @sock: The socket on which to make the call |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 262 | * @srx: The address of the peer to contact |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 263 | * @key: The security context to use (defaults to socket setting) |
| 264 | * @user_call_ID: The ID to use |
David Howells | e754eba | 2017-06-07 12:40:03 +0100 | [diff] [blame] | 265 | * @tx_total_len: Total length of data to transmit during the call (or -1) |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 266 | * @gfp: The allocation constraints |
| 267 | * @notify_rx: Where to send notifications instead of socket queue |
David Howells | a68f4a2 | 2017-10-18 11:36:39 +0100 | [diff] [blame] | 268 | * @upgrade: Request service upgrade for call |
David Howells | b960a34 | 2019-05-09 08:21:21 +0100 | [diff] [blame] | 269 | * @intr: The call is interruptible |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 270 | * @debug_id: The debug ID for tracing to be assigned to the call |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 271 | * |
| 272 | * Allow a kernel service to begin a call on the nominated socket. This just |
| 273 | * sets up all the internal tracking structures and allocates connection and |
| 274 | * call IDs as appropriate. The call to be used is returned. |
| 275 | * |
| 276 | * The default socket destination address and security may be overridden by |
| 277 | * supplying @srx and @key. |
| 278 | */ |
| 279 | struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *sock, |
| 280 | struct sockaddr_rxrpc *srx, |
| 281 | struct key *key, |
| 282 | unsigned long user_call_ID, |
David Howells | e754eba | 2017-06-07 12:40:03 +0100 | [diff] [blame] | 283 | s64 tx_total_len, |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 284 | gfp_t gfp, |
David Howells | a68f4a2 | 2017-10-18 11:36:39 +0100 | [diff] [blame] | 285 | rxrpc_notify_rx_t notify_rx, |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 286 | bool upgrade, |
David Howells | b960a34 | 2019-05-09 08:21:21 +0100 | [diff] [blame] | 287 | bool intr, |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 288 | unsigned int debug_id) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 289 | { |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 290 | struct rxrpc_conn_parameters cp; |
David Howells | 4812417 | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 291 | struct rxrpc_call_params p; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 292 | struct rxrpc_call *call; |
| 293 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
David Howells | f4552c2 | 2016-06-17 11:00:48 +0100 | [diff] [blame] | 294 | int ret; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 295 | |
| 296 | _enter(",,%x,%lx", key_serial(key), user_call_ID); |
| 297 | |
David Howells | f4552c2 | 2016-06-17 11:00:48 +0100 | [diff] [blame] | 298 | ret = rxrpc_validate_address(rx, srx, sizeof(*srx)); |
| 299 | if (ret < 0) |
| 300 | return ERR_PTR(ret); |
| 301 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 302 | lock_sock(&rx->sk); |
| 303 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 304 | if (!key) |
| 305 | key = rx->key; |
| 306 | if (key && !key->payload.data[0]) |
| 307 | key = NULL; /* a no-security key */ |
| 308 | |
David Howells | 4812417 | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 309 | memset(&p, 0, sizeof(p)); |
| 310 | p.user_call_ID = user_call_ID; |
| 311 | p.tx_total_len = tx_total_len; |
David Howells | b960a34 | 2019-05-09 08:21:21 +0100 | [diff] [blame] | 312 | p.intr = intr; |
David Howells | 4812417 | 2017-11-24 10:18:41 +0000 | [diff] [blame] | 313 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 314 | memset(&cp, 0, sizeof(cp)); |
| 315 | cp.local = rx->local; |
| 316 | cp.key = key; |
David Howells | 93864fc | 2018-05-10 23:26:01 +0100 | [diff] [blame] | 317 | cp.security_level = rx->min_sec_level; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 318 | cp.exclusive = false; |
David Howells | a68f4a2 | 2017-10-18 11:36:39 +0100 | [diff] [blame] | 319 | cp.upgrade = upgrade; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 320 | cp.service_id = srx->srx_service; |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 321 | call = rxrpc_new_client_call(rx, &cp, srx, &p, gfp, debug_id); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 322 | /* The socket has been unlocked. */ |
David Howells | 6cb3ece | 2017-10-20 17:01:22 +0100 | [diff] [blame] | 323 | if (!IS_ERR(call)) { |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 324 | call->notify_rx = notify_rx; |
David Howells | 6cb3ece | 2017-10-20 17:01:22 +0100 | [diff] [blame] | 325 | mutex_unlock(&call->user_mutex); |
| 326 | } |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 327 | |
David Howells | 17226f1 | 2018-03-30 21:05:44 +0100 | [diff] [blame] | 328 | rxrpc_put_peer(cp.peer); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 329 | _leave(" = %p", call); |
| 330 | return call; |
| 331 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 332 | EXPORT_SYMBOL(rxrpc_kernel_begin_call); |
| 333 | |
David Howells | 20acbd9 | 2017-11-02 15:06:08 +0000 | [diff] [blame] | 334 | /* |
| 335 | * Dummy function used to stop the notifier talking to recvmsg(). |
| 336 | */ |
| 337 | static void rxrpc_dummy_notify_rx(struct sock *sk, struct rxrpc_call *rxcall, |
| 338 | unsigned long call_user_ID) |
| 339 | { |
| 340 | } |
| 341 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 342 | /** |
| 343 | * 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] | 344 | * @sock: The socket the call is on |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 345 | * @call: The call to end |
| 346 | * |
| 347 | * Allow a kernel service to end a call it was using. The call must be |
| 348 | * complete before this is called (the call should be aborted if necessary). |
| 349 | */ |
David Howells | 4de48af | 2016-08-30 12:00:48 +0100 | [diff] [blame] | 350 | void rxrpc_kernel_end_call(struct socket *sock, struct rxrpc_call *call) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 351 | { |
| 352 | _enter("%d{%d}", call->debug_id, atomic_read(&call->usage)); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 353 | |
| 354 | mutex_lock(&call->user_mutex); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 355 | rxrpc_release_call(rxrpc_sk(sock->sk), call); |
David Howells | 20acbd9 | 2017-11-02 15:06:08 +0000 | [diff] [blame] | 356 | |
| 357 | /* Make sure we're not going to call back into a kernel service */ |
| 358 | if (call->notify_rx) { |
| 359 | spin_lock_bh(&call->notify_lock); |
| 360 | call->notify_rx = rxrpc_dummy_notify_rx; |
| 361 | spin_unlock_bh(&call->notify_lock); |
| 362 | } |
| 363 | |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 364 | mutex_unlock(&call->user_mutex); |
David Howells | cbd0089 | 2016-09-13 09:12:34 +0100 | [diff] [blame] | 365 | rxrpc_put_call(call, rxrpc_call_put_kernel); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 366 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 367 | EXPORT_SYMBOL(rxrpc_kernel_end_call); |
| 368 | |
| 369 | /** |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 370 | * rxrpc_kernel_check_life - Check to see whether a call is still alive |
| 371 | * @sock: The socket the call is on |
| 372 | * @call: The call to check |
Marc Dionne | 4611da3 | 2019-04-12 16:33:47 +0100 | [diff] [blame] | 373 | * @_life: Where to store the life value |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 374 | * |
| 375 | * Allow a kernel service to find out whether a call is still alive - ie. we're |
Marc Dionne | 4611da3 | 2019-04-12 16:33:47 +0100 | [diff] [blame] | 376 | * getting ACKs from the server. Passes back in *_life a number representing |
| 377 | * the life state which can be compared to that returned by a previous call and |
| 378 | * return true if the call is still alive. |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 379 | * |
David Howells | 7150cea | 2018-11-12 22:33:22 +0000 | [diff] [blame] | 380 | * If the life state stalls, rxrpc_kernel_probe_life() should be called and |
| 381 | * then 2RTT waited. |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 382 | */ |
Marc Dionne | 4611da3 | 2019-04-12 16:33:47 +0100 | [diff] [blame] | 383 | bool rxrpc_kernel_check_life(const struct socket *sock, |
| 384 | const struct rxrpc_call *call, |
| 385 | u32 *_life) |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 386 | { |
Marc Dionne | 4611da3 | 2019-04-12 16:33:47 +0100 | [diff] [blame] | 387 | *_life = call->acks_latest; |
| 388 | return call->state != RXRPC_CALL_COMPLETE; |
David Howells | f4d15fb | 2017-10-18 11:07:31 +0100 | [diff] [blame] | 389 | } |
| 390 | EXPORT_SYMBOL(rxrpc_kernel_check_life); |
| 391 | |
| 392 | /** |
David Howells | 7150cea | 2018-11-12 22:33:22 +0000 | [diff] [blame] | 393 | * rxrpc_kernel_probe_life - Poke the peer to see if it's still alive |
| 394 | * @sock: The socket the call is on |
| 395 | * @call: The call to check |
| 396 | * |
| 397 | * In conjunction with rxrpc_kernel_check_life(), allow a kernel service to |
| 398 | * find out whether a call is still alive by pinging it. This should cause the |
| 399 | * life state to be bumped in about 2*RTT. |
| 400 | * |
| 401 | * The must be called in TASK_RUNNING state on pain of might_sleep() objecting. |
| 402 | */ |
| 403 | void rxrpc_kernel_probe_life(struct socket *sock, struct rxrpc_call *call) |
| 404 | { |
| 405 | rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, 0, true, false, |
| 406 | rxrpc_propose_ack_ping_for_check_life); |
| 407 | rxrpc_send_ack_packet(call, true, NULL); |
| 408 | } |
| 409 | EXPORT_SYMBOL(rxrpc_kernel_probe_life); |
| 410 | |
| 411 | /** |
David Howells | e908bcf | 2018-10-04 09:54:29 +0100 | [diff] [blame] | 412 | * rxrpc_kernel_get_epoch - Retrieve the epoch value from a call. |
| 413 | * @sock: The socket the call is on |
| 414 | * @call: The call to query |
| 415 | * |
| 416 | * Allow a kernel service to retrieve the epoch value from a service call to |
| 417 | * see if the client at the other end rebooted. |
| 418 | */ |
| 419 | u32 rxrpc_kernel_get_epoch(struct socket *sock, struct rxrpc_call *call) |
| 420 | { |
| 421 | return call->conn->proto.epoch; |
| 422 | } |
| 423 | EXPORT_SYMBOL(rxrpc_kernel_get_epoch); |
| 424 | |
| 425 | /** |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 426 | * rxrpc_kernel_new_call_notification - Get notifications of new calls |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 427 | * @sock: The socket to intercept received messages on |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 428 | * @notify_new_call: Function to be called when new calls appear |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 429 | * @discard_new_call: Function to discard preallocated calls |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 430 | * |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 431 | * Allow a kernel service to be given notifications about new calls. |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 432 | */ |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 433 | void rxrpc_kernel_new_call_notification( |
| 434 | struct socket *sock, |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 435 | rxrpc_notify_new_call_t notify_new_call, |
| 436 | rxrpc_discard_new_call_t discard_new_call) |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 437 | { |
| 438 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
| 439 | |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 440 | rx->notify_new_call = notify_new_call; |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 441 | rx->discard_new_call = discard_new_call; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 442 | } |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 443 | EXPORT_SYMBOL(rxrpc_kernel_new_call_notification); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 444 | |
David Howells | bbd172e | 2019-05-16 13:50:31 +0100 | [diff] [blame] | 445 | /** |
| 446 | * rxrpc_kernel_set_max_life - Set maximum lifespan on a call |
| 447 | * @sock: The socket the call is on |
| 448 | * @call: The call to configure |
| 449 | * @hard_timeout: The maximum lifespan of the call in jiffies |
| 450 | * |
| 451 | * Set the maximum lifespan of a call. The call will end with ETIME or |
| 452 | * ETIMEDOUT if it takes longer than this. |
| 453 | */ |
| 454 | void rxrpc_kernel_set_max_life(struct socket *sock, struct rxrpc_call *call, |
| 455 | unsigned long hard_timeout) |
| 456 | { |
| 457 | unsigned long now; |
| 458 | |
| 459 | mutex_lock(&call->user_mutex); |
| 460 | |
| 461 | now = jiffies; |
| 462 | hard_timeout += now; |
| 463 | WRITE_ONCE(call->expect_term_by, hard_timeout); |
| 464 | rxrpc_reduce_call_timer(call, hard_timeout, now, rxrpc_timer_set_for_hard); |
| 465 | |
| 466 | mutex_unlock(&call->user_mutex); |
| 467 | } |
| 468 | EXPORT_SYMBOL(rxrpc_kernel_set_max_life); |
| 469 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 470 | /* |
| 471 | * connect an RxRPC socket |
| 472 | * - this just targets it at a specific destination; no actual connection |
| 473 | * negotiation takes place |
| 474 | */ |
| 475 | static int rxrpc_connect(struct socket *sock, struct sockaddr *addr, |
| 476 | int addr_len, int flags) |
| 477 | { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 478 | struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)addr; |
| 479 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 480 | int ret; |
| 481 | |
| 482 | _enter("%p,%p,%d,%d", rx, addr, addr_len, flags); |
| 483 | |
| 484 | ret = rxrpc_validate_address(rx, srx, addr_len); |
| 485 | if (ret < 0) { |
| 486 | _leave(" = %d [bad addr]", ret); |
| 487 | return ret; |
| 488 | } |
| 489 | |
| 490 | lock_sock(&rx->sk); |
| 491 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 492 | ret = -EISCONN; |
| 493 | if (test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) |
| 494 | goto error; |
| 495 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 496 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 497 | case RXRPC_UNBOUND: |
| 498 | rx->sk.sk_state = RXRPC_CLIENT_UNBOUND; |
| 499 | case RXRPC_CLIENT_UNBOUND: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 500 | case RXRPC_CLIENT_BOUND: |
| 501 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 502 | default: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 503 | ret = -EBUSY; |
| 504 | goto error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 505 | } |
| 506 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 507 | rx->connect_srx = *srx; |
| 508 | set_bit(RXRPC_SOCK_CONNECTED, &rx->flags); |
| 509 | ret = 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 510 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 511 | error: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 512 | release_sock(&rx->sk); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 513 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /* |
| 517 | * send a message through an RxRPC socket |
| 518 | * - in a client this does a number of things: |
| 519 | * - finds/sets up a connection for the security specified (if any) |
| 520 | * - initiates a call (ID in control data) |
| 521 | * - ends the request phase of a call (if MSG_MORE is not set) |
| 522 | * - sends a call data packet |
| 523 | * - may send an abort (abort code in control data) |
| 524 | */ |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 525 | 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] | 526 | { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 527 | struct rxrpc_local *local; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 528 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
| 529 | int ret; |
| 530 | |
| 531 | _enter(",{%d},,%zu", rx->sk.sk_state, len); |
| 532 | |
| 533 | if (m->msg_flags & MSG_OOB) |
| 534 | return -EOPNOTSUPP; |
| 535 | |
| 536 | if (m->msg_name) { |
| 537 | ret = rxrpc_validate_address(rx, m->msg_name, m->msg_namelen); |
| 538 | if (ret < 0) { |
| 539 | _leave(" = %d [bad addr]", ret); |
| 540 | return ret; |
| 541 | } |
| 542 | } |
| 543 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 544 | lock_sock(&rx->sk); |
| 545 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 546 | switch (rx->sk.sk_state) { |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 547 | case RXRPC_UNBOUND: |
David Howells | cd5892c | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 548 | rx->srx.srx_family = AF_RXRPC; |
| 549 | rx->srx.srx_service = 0; |
| 550 | rx->srx.transport_type = SOCK_DGRAM; |
| 551 | rx->srx.transport.family = rx->family; |
| 552 | switch (rx->family) { |
| 553 | case AF_INET: |
| 554 | rx->srx.transport_len = sizeof(struct sockaddr_in); |
| 555 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 556 | #ifdef CONFIG_AF_RXRPC_IPV6 |
David Howells | 75b54cb | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 557 | case AF_INET6: |
| 558 | rx->srx.transport_len = sizeof(struct sockaddr_in6); |
| 559 | break; |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 560 | #endif |
David Howells | cd5892c | 2016-09-13 08:49:05 +0100 | [diff] [blame] | 561 | default: |
| 562 | ret = -EAFNOSUPPORT; |
| 563 | goto error_unlock; |
| 564 | } |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 565 | local = rxrpc_lookup_local(sock_net(sock->sk), &rx->srx); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 566 | if (IS_ERR(local)) { |
| 567 | ret = PTR_ERR(local); |
| 568 | goto error_unlock; |
| 569 | } |
| 570 | |
| 571 | rx->local = local; |
| 572 | rx->sk.sk_state = RXRPC_CLIENT_UNBOUND; |
| 573 | /* Fall through */ |
| 574 | |
| 575 | case RXRPC_CLIENT_UNBOUND: |
| 576 | case RXRPC_CLIENT_BOUND: |
| 577 | if (!m->msg_name && |
| 578 | test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) { |
| 579 | m->msg_name = &rx->connect_srx; |
| 580 | m->msg_namelen = sizeof(rx->connect_srx); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 581 | } |
Gustavo A. R. Silva | e3cf3970 | 2017-10-19 16:54:48 -0500 | [diff] [blame] | 582 | /* Fall through */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 583 | case RXRPC_SERVER_BOUND: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 584 | case RXRPC_SERVER_LISTENING: |
| 585 | ret = rxrpc_do_sendmsg(rx, m, len); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 586 | /* The socket has been unlocked */ |
| 587 | goto out; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 588 | default: |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 589 | ret = -EINVAL; |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 590 | goto error_unlock; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 591 | } |
| 592 | |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 593 | error_unlock: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 594 | release_sock(&rx->sk); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 595 | out: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 596 | _leave(" = %d", ret); |
| 597 | return ret; |
| 598 | } |
| 599 | |
| 600 | /* |
| 601 | * set RxRPC socket options |
| 602 | */ |
| 603 | static int rxrpc_setsockopt(struct socket *sock, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 604 | char __user *optval, unsigned int optlen) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 605 | { |
| 606 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 607 | unsigned int min_sec_level; |
David Howells | 4722974 | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 608 | u16 service_upgrade[2]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 609 | int ret; |
| 610 | |
| 611 | _enter(",%d,%d,,%d", level, optname, optlen); |
| 612 | |
| 613 | lock_sock(&rx->sk); |
| 614 | ret = -EOPNOTSUPP; |
| 615 | |
| 616 | if (level == SOL_RXRPC) { |
| 617 | switch (optname) { |
| 618 | case RXRPC_EXCLUSIVE_CONNECTION: |
| 619 | ret = -EINVAL; |
| 620 | if (optlen != 0) |
| 621 | goto error; |
| 622 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 623 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 624 | goto error; |
David Howells | cc8feb8 | 2016-04-04 14:00:37 +0100 | [diff] [blame] | 625 | rx->exclusive = true; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 626 | goto success; |
| 627 | |
| 628 | case RXRPC_SECURITY_KEY: |
| 629 | ret = -EINVAL; |
| 630 | if (rx->key) |
| 631 | goto error; |
| 632 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 633 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 634 | goto error; |
| 635 | ret = rxrpc_request_key(rx, optval, optlen); |
| 636 | goto error; |
| 637 | |
| 638 | case RXRPC_SECURITY_KEYRING: |
| 639 | ret = -EINVAL; |
| 640 | if (rx->key) |
| 641 | goto error; |
| 642 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 643 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 644 | goto error; |
| 645 | ret = rxrpc_server_keyring(rx, optval, optlen); |
| 646 | goto error; |
| 647 | |
| 648 | case RXRPC_MIN_SECURITY_LEVEL: |
| 649 | ret = -EINVAL; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 650 | if (optlen != sizeof(unsigned int)) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 651 | goto error; |
| 652 | ret = -EISCONN; |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 653 | if (rx->sk.sk_state != RXRPC_UNBOUND) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 654 | goto error; |
| 655 | ret = get_user(min_sec_level, |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 656 | (unsigned int __user *) optval); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 657 | if (ret < 0) |
| 658 | goto error; |
| 659 | ret = -EINVAL; |
| 660 | if (min_sec_level > RXRPC_SECURITY_MAX) |
| 661 | goto error; |
| 662 | rx->min_sec_level = min_sec_level; |
| 663 | goto success; |
| 664 | |
David Howells | 4722974 | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 665 | case RXRPC_UPGRADEABLE_SERVICE: |
| 666 | ret = -EINVAL; |
| 667 | if (optlen != sizeof(service_upgrade) || |
| 668 | rx->service_upgrade.from != 0) |
| 669 | goto error; |
| 670 | ret = -EISCONN; |
| 671 | if (rx->sk.sk_state != RXRPC_SERVER_BOUND2) |
| 672 | goto error; |
| 673 | ret = -EFAULT; |
| 674 | if (copy_from_user(service_upgrade, optval, |
| 675 | sizeof(service_upgrade)) != 0) |
| 676 | goto error; |
| 677 | ret = -EINVAL; |
| 678 | if ((service_upgrade[0] != rx->srx.srx_service || |
| 679 | service_upgrade[1] != rx->second_service) && |
| 680 | (service_upgrade[0] != rx->second_service || |
| 681 | service_upgrade[1] != rx->srx.srx_service)) |
| 682 | goto error; |
| 683 | rx->service_upgrade.from = service_upgrade[0]; |
| 684 | rx->service_upgrade.to = service_upgrade[1]; |
| 685 | goto success; |
| 686 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 687 | default: |
| 688 | break; |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | success: |
| 693 | ret = 0; |
| 694 | error: |
| 695 | release_sock(&rx->sk); |
| 696 | return ret; |
| 697 | } |
| 698 | |
| 699 | /* |
David Howells | 515559c | 2017-06-07 16:27:15 +0100 | [diff] [blame] | 700 | * Get socket options. |
| 701 | */ |
| 702 | static int rxrpc_getsockopt(struct socket *sock, int level, int optname, |
| 703 | char __user *optval, int __user *_optlen) |
| 704 | { |
| 705 | int optlen; |
David Howells | 3ec0efd | 2017-08-29 10:18:50 +0100 | [diff] [blame] | 706 | |
David Howells | 515559c | 2017-06-07 16:27:15 +0100 | [diff] [blame] | 707 | if (level != SOL_RXRPC) |
| 708 | return -EOPNOTSUPP; |
| 709 | |
| 710 | if (get_user(optlen, _optlen)) |
| 711 | return -EFAULT; |
David Howells | 3ec0efd | 2017-08-29 10:18:50 +0100 | [diff] [blame] | 712 | |
David Howells | 515559c | 2017-06-07 16:27:15 +0100 | [diff] [blame] | 713 | switch (optname) { |
| 714 | case RXRPC_SUPPORTED_CMSG: |
| 715 | if (optlen < sizeof(int)) |
| 716 | return -ETOOSMALL; |
| 717 | if (put_user(RXRPC__SUPPORTED - 1, (int __user *)optval) || |
| 718 | put_user(sizeof(int), _optlen)) |
| 719 | return -EFAULT; |
| 720 | return 0; |
David Howells | 3ec0efd | 2017-08-29 10:18:50 +0100 | [diff] [blame] | 721 | |
David Howells | 515559c | 2017-06-07 16:27:15 +0100 | [diff] [blame] | 722 | default: |
| 723 | return -EOPNOTSUPP; |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 728 | * permit an RxRPC socket to be polled |
| 729 | */ |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 730 | static __poll_t rxrpc_poll(struct file *file, struct socket *sock, |
| 731 | poll_table *wait) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 732 | { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 733 | struct sock *sk = sock->sk; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 734 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 735 | __poll_t mask; |
| 736 | |
Karsten Graul | 89ab066 | 2018-10-23 13:40:39 +0200 | [diff] [blame] | 737 | sock_poll_wait(file, sock, wait); |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 738 | mask = 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 739 | |
| 740 | /* the socket is readable if there are any messages waiting on the Rx |
| 741 | * queue */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 742 | if (!list_empty(&rx->recvmsg_q)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 743 | mask |= EPOLLIN | EPOLLRDNORM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 744 | |
| 745 | /* the socket is writable if there is space to add new data to the |
| 746 | * socket; there is no guarantee that any particular call in progress |
| 747 | * on the socket may have space in the Tx ACK window */ |
| 748 | if (rxrpc_writable(sk)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 749 | mask |= EPOLLOUT | EPOLLWRNORM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 750 | |
| 751 | return mask; |
| 752 | } |
| 753 | |
| 754 | /* |
| 755 | * create an RxRPC socket |
| 756 | */ |
Eric Paris | 3f378b6 | 2009-11-05 22:18:14 -0800 | [diff] [blame] | 757 | static int rxrpc_create(struct net *net, struct socket *sock, int protocol, |
| 758 | int kern) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 759 | { |
David Howells | ace45be | 2018-03-30 21:04:43 +0100 | [diff] [blame] | 760 | struct rxrpc_net *rxnet; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 761 | struct rxrpc_sock *rx; |
| 762 | struct sock *sk; |
| 763 | |
| 764 | _enter("%p,%d", sock, protocol); |
| 765 | |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 766 | /* we support transport protocol UDP/UDP6 only */ |
David Howells | d191274 | 2016-09-17 07:26:01 +0100 | [diff] [blame] | 767 | if (protocol != PF_INET && |
| 768 | IS_ENABLED(CONFIG_AF_RXRPC_IPV6) && protocol != PF_INET6) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 769 | return -EPROTONOSUPPORT; |
| 770 | |
| 771 | if (sock->type != SOCK_DGRAM) |
| 772 | return -ESOCKTNOSUPPORT; |
| 773 | |
| 774 | sock->ops = &rxrpc_rpc_ops; |
| 775 | sock->state = SS_UNCONNECTED; |
| 776 | |
Eric W. Biederman | 11aa9c2 | 2015-05-08 21:09:13 -0500 | [diff] [blame] | 777 | sk = sk_alloc(net, PF_RXRPC, GFP_KERNEL, &rxrpc_proto, kern); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 778 | if (!sk) |
| 779 | return -ENOMEM; |
| 780 | |
| 781 | sock_init_data(sock, sk); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 782 | sock_set_flag(sk, SOCK_RCU_FREE); |
David Howells | 2341e07 | 2016-06-09 23:02:51 +0100 | [diff] [blame] | 783 | sk->sk_state = RXRPC_UNBOUND; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 784 | sk->sk_write_space = rxrpc_write_space; |
David Howells | 0e119b4 | 2016-06-10 22:30:37 +0100 | [diff] [blame] | 785 | sk->sk_max_ack_backlog = 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 786 | sk->sk_destruct = rxrpc_sock_destructor; |
| 787 | |
| 788 | rx = rxrpc_sk(sk); |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 789 | rx->family = protocol; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 790 | rx->calls = RB_ROOT; |
| 791 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 792 | spin_lock_init(&rx->incoming_lock); |
| 793 | INIT_LIST_HEAD(&rx->sock_calls); |
| 794 | INIT_LIST_HEAD(&rx->to_be_accepted); |
| 795 | INIT_LIST_HEAD(&rx->recvmsg_q); |
| 796 | rwlock_init(&rx->recvmsg_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 797 | rwlock_init(&rx->call_lock); |
| 798 | memset(&rx->srx, 0, sizeof(rx->srx)); |
| 799 | |
David Howells | ace45be | 2018-03-30 21:04:43 +0100 | [diff] [blame] | 800 | rxnet = rxrpc_net(sock_net(&rx->sk)); |
| 801 | timer_reduce(&rxnet->peer_keepalive_timer, jiffies + 1); |
| 802 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 803 | _leave(" = 0 [%p]", rx); |
| 804 | return 0; |
| 805 | } |
| 806 | |
| 807 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 808 | * Kill all the calls on a socket and shut it down. |
| 809 | */ |
| 810 | static int rxrpc_shutdown(struct socket *sock, int flags) |
| 811 | { |
| 812 | struct sock *sk = sock->sk; |
| 813 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
| 814 | int ret = 0; |
| 815 | |
| 816 | _enter("%p,%d", sk, flags); |
| 817 | |
| 818 | if (flags != SHUT_RDWR) |
| 819 | return -EOPNOTSUPP; |
| 820 | if (sk->sk_state == RXRPC_CLOSE) |
| 821 | return -ESHUTDOWN; |
| 822 | |
| 823 | lock_sock(sk); |
| 824 | |
| 825 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 826 | if (sk->sk_state < RXRPC_CLOSE) { |
| 827 | sk->sk_state = RXRPC_CLOSE; |
| 828 | sk->sk_shutdown = SHUTDOWN_MASK; |
| 829 | } else { |
| 830 | ret = -ESHUTDOWN; |
| 831 | } |
| 832 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 833 | |
| 834 | rxrpc_discard_prealloc(rx); |
| 835 | |
| 836 | release_sock(sk); |
| 837 | return ret; |
| 838 | } |
| 839 | |
| 840 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 841 | * RxRPC socket destructor |
| 842 | */ |
| 843 | static void rxrpc_sock_destructor(struct sock *sk) |
| 844 | { |
| 845 | _enter("%p", sk); |
| 846 | |
| 847 | rxrpc_purge_queue(&sk->sk_receive_queue); |
| 848 | |
Reshetova, Elena | 14afee4 | 2017-06-30 13:08:00 +0300 | [diff] [blame] | 849 | WARN_ON(refcount_read(&sk->sk_wmem_alloc)); |
Ilpo Järvinen | 547b792 | 2008-07-25 21:43:18 -0700 | [diff] [blame] | 850 | WARN_ON(!sk_unhashed(sk)); |
| 851 | WARN_ON(sk->sk_socket); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 852 | |
| 853 | if (!sock_flag(sk, SOCK_DEAD)) { |
| 854 | printk("Attempt to release alive rxrpc socket: %p\n", sk); |
| 855 | return; |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | /* |
| 860 | * release an RxRPC socket |
| 861 | */ |
| 862 | static int rxrpc_release_sock(struct sock *sk) |
| 863 | { |
| 864 | struct rxrpc_sock *rx = rxrpc_sk(sk); |
David Howells | c501256 | 2017-12-01 11:09:53 +0000 | [diff] [blame] | 865 | struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 866 | |
Reshetova, Elena | 41c6d65 | 2017-06-30 13:08:01 +0300 | [diff] [blame] | 867 | _enter("%p{%d,%d}", sk, sk->sk_state, refcount_read(&sk->sk_refcnt)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 868 | |
| 869 | /* declare the socket closed for business */ |
| 870 | sock_orphan(sk); |
| 871 | sk->sk_shutdown = SHUTDOWN_MASK; |
| 872 | |
David Howells | f859ab6 | 2017-11-24 10:18:42 +0000 | [diff] [blame] | 873 | /* We want to kill off all connections from a service socket |
| 874 | * as fast as possible because we can't share these; client |
| 875 | * sockets, on the other hand, can share an endpoint. |
| 876 | */ |
| 877 | switch (sk->sk_state) { |
| 878 | case RXRPC_SERVER_BOUND: |
| 879 | case RXRPC_SERVER_BOUND2: |
| 880 | case RXRPC_SERVER_LISTENING: |
| 881 | case RXRPC_SERVER_LISTEN_DISABLED: |
| 882 | rx->local->service_closed = true; |
| 883 | break; |
| 884 | } |
| 885 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 886 | spin_lock_bh(&sk->sk_receive_queue.lock); |
| 887 | sk->sk_state = RXRPC_CLOSE; |
| 888 | spin_unlock_bh(&sk->sk_receive_queue.lock); |
| 889 | |
David Howells | b63452c | 2016-10-06 08:11:48 +0100 | [diff] [blame] | 890 | if (rx->local && rcu_access_pointer(rx->local->service) == rx) { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 891 | write_lock(&rx->local->services_lock); |
David Howells | b63452c | 2016-10-06 08:11:48 +0100 | [diff] [blame] | 892 | rcu_assign_pointer(rx->local->service, NULL); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 893 | write_unlock(&rx->local->services_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | /* try to flush out this socket */ |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 897 | rxrpc_discard_prealloc(rx); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 898 | rxrpc_release_calls_on_socket(rx); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 899 | flush_workqueue(rxrpc_workqueue); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 900 | rxrpc_purge_queue(&sk->sk_receive_queue); |
David Howells | c501256 | 2017-12-01 11:09:53 +0000 | [diff] [blame] | 901 | rxrpc_queue_work(&rxnet->service_conn_reaper); |
| 902 | rxrpc_queue_work(&rxnet->client_conn_reaper); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 903 | |
David Howells | 5627cc8 | 2016-04-04 14:00:38 +0100 | [diff] [blame] | 904 | rxrpc_put_local(rx->local); |
| 905 | rx->local = NULL; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 906 | key_put(rx->key); |
| 907 | rx->key = NULL; |
| 908 | key_put(rx->securities); |
| 909 | rx->securities = NULL; |
| 910 | sock_put(sk); |
| 911 | |
| 912 | _leave(" = 0"); |
| 913 | return 0; |
| 914 | } |
| 915 | |
| 916 | /* |
| 917 | * release an RxRPC BSD socket on close() or equivalent |
| 918 | */ |
| 919 | static int rxrpc_release(struct socket *sock) |
| 920 | { |
| 921 | struct sock *sk = sock->sk; |
| 922 | |
| 923 | _enter("%p{%p}", sock, sk); |
| 924 | |
| 925 | if (!sk) |
| 926 | return 0; |
| 927 | |
| 928 | sock->sk = NULL; |
| 929 | |
| 930 | return rxrpc_release_sock(sk); |
| 931 | } |
| 932 | |
| 933 | /* |
| 934 | * RxRPC network protocol |
| 935 | */ |
| 936 | static const struct proto_ops rxrpc_rpc_ops = { |
David Howells | e33b3d9 | 2016-03-04 15:54:27 +0000 | [diff] [blame] | 937 | .family = PF_RXRPC, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 938 | .owner = THIS_MODULE, |
| 939 | .release = rxrpc_release, |
| 940 | .bind = rxrpc_bind, |
| 941 | .connect = rxrpc_connect, |
| 942 | .socketpair = sock_no_socketpair, |
| 943 | .accept = sock_no_accept, |
| 944 | .getname = sock_no_getname, |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 945 | .poll = rxrpc_poll, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 946 | .ioctl = sock_no_ioctl, |
| 947 | .listen = rxrpc_listen, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 948 | .shutdown = rxrpc_shutdown, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 949 | .setsockopt = rxrpc_setsockopt, |
David Howells | 515559c | 2017-06-07 16:27:15 +0100 | [diff] [blame] | 950 | .getsockopt = rxrpc_getsockopt, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 951 | .sendmsg = rxrpc_sendmsg, |
| 952 | .recvmsg = rxrpc_recvmsg, |
| 953 | .mmap = sock_no_mmap, |
| 954 | .sendpage = sock_no_sendpage, |
| 955 | }; |
| 956 | |
| 957 | static struct proto rxrpc_proto = { |
| 958 | .name = "RXRPC", |
| 959 | .owner = THIS_MODULE, |
| 960 | .obj_size = sizeof(struct rxrpc_sock), |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 961 | .max_header = sizeof(struct rxrpc_wire_header), |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 962 | }; |
| 963 | |
Stephen Hemminger | ec1b4cf | 2009-10-05 05:58:39 +0000 | [diff] [blame] | 964 | static const struct net_proto_family rxrpc_family_ops = { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 965 | .family = PF_RXRPC, |
| 966 | .create = rxrpc_create, |
| 967 | .owner = THIS_MODULE, |
| 968 | }; |
| 969 | |
| 970 | /* |
| 971 | * initialise and register the RxRPC protocol |
| 972 | */ |
| 973 | static int __init af_rxrpc_init(void) |
| 974 | { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 975 | int ret = -1; |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 976 | unsigned int tmp; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 977 | |
YOSHIFUJI Hideaki / 吉藤英明 | ce6654c | 2013-01-09 07:20:01 +0000 | [diff] [blame] | 978 | 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] | 979 | |
Matthew Wilcox | 4443061 | 2016-12-14 15:09:19 -0800 | [diff] [blame] | 980 | get_random_bytes(&tmp, sizeof(tmp)); |
| 981 | tmp &= 0x3fffffff; |
| 982 | if (tmp == 0) |
| 983 | tmp = 1; |
| 984 | idr_set_cursor(&rxrpc_client_conn_ids, tmp); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 985 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 986 | ret = -ENOMEM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 987 | rxrpc_call_jar = kmem_cache_create( |
| 988 | "rxrpc_call_jar", sizeof(struct rxrpc_call), 0, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 989 | SLAB_HWCACHE_ALIGN, NULL); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 990 | if (!rxrpc_call_jar) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 991 | pr_notice("Failed to allocate call jar\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 992 | goto error_call_jar; |
| 993 | } |
| 994 | |
Tejun Heo | e1fcc7e | 2011-01-14 15:56:31 +0000 | [diff] [blame] | 995 | rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 996 | if (!rxrpc_workqueue) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 997 | pr_notice("Failed to allocate work queue\n"); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 998 | goto error_work_queue; |
| 999 | } |
| 1000 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1001 | ret = rxrpc_init_security(); |
| 1002 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1003 | pr_crit("Cannot initialise security\n"); |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1004 | goto error_security; |
| 1005 | } |
| 1006 | |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 1007 | ret = register_pernet_subsys(&rxrpc_net_ops); |
| 1008 | if (ret) |
| 1009 | goto error_pernet; |
| 1010 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1011 | ret = proto_register(&rxrpc_proto, 1); |
YOSHIFUJI Hideaki | 1c89964 | 2007-07-19 10:44:44 +0900 | [diff] [blame] | 1012 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1013 | pr_crit("Cannot register protocol\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1014 | goto error_proto; |
| 1015 | } |
| 1016 | |
| 1017 | ret = sock_register(&rxrpc_family_ops); |
| 1018 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1019 | pr_crit("Cannot register socket family\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1020 | goto error_sock; |
| 1021 | } |
| 1022 | |
| 1023 | ret = register_key_type(&key_type_rxrpc); |
| 1024 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1025 | pr_crit("Cannot register client key type\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1026 | goto error_key_type; |
| 1027 | } |
| 1028 | |
| 1029 | ret = register_key_type(&key_type_rxrpc_s); |
| 1030 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1031 | pr_crit("Cannot register server key type\n"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1032 | goto error_key_type_s; |
| 1033 | } |
| 1034 | |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 1035 | ret = rxrpc_sysctl_init(); |
| 1036 | if (ret < 0) { |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 1037 | pr_crit("Cannot register sysctls\n"); |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 1038 | goto error_sysctls; |
| 1039 | } |
| 1040 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1041 | return 0; |
| 1042 | |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 1043 | error_sysctls: |
| 1044 | unregister_key_type(&key_type_rxrpc_s); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1045 | error_key_type_s: |
| 1046 | unregister_key_type(&key_type_rxrpc); |
| 1047 | error_key_type: |
| 1048 | sock_unregister(PF_RXRPC); |
| 1049 | error_sock: |
| 1050 | proto_unregister(&rxrpc_proto); |
| 1051 | error_proto: |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 1052 | unregister_pernet_subsys(&rxrpc_net_ops); |
| 1053 | error_pernet: |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1054 | rxrpc_exit_security(); |
Wei Yongjun | 8addc04 | 2016-07-12 11:21:17 +0000 | [diff] [blame] | 1055 | error_security: |
| 1056 | destroy_workqueue(rxrpc_workqueue); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 1057 | error_work_queue: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1058 | kmem_cache_destroy(rxrpc_call_jar); |
| 1059 | error_call_jar: |
| 1060 | return ret; |
| 1061 | } |
| 1062 | |
| 1063 | /* |
| 1064 | * unregister the RxRPC protocol |
| 1065 | */ |
| 1066 | static void __exit af_rxrpc_exit(void) |
| 1067 | { |
| 1068 | _enter(""); |
David Howells | 5873c08 | 2014-02-07 18:58:44 +0000 | [diff] [blame] | 1069 | rxrpc_sysctl_exit(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1070 | unregister_key_type(&key_type_rxrpc_s); |
| 1071 | unregister_key_type(&key_type_rxrpc); |
| 1072 | sock_unregister(PF_RXRPC); |
| 1073 | proto_unregister(&rxrpc_proto); |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 1074 | unregister_pernet_subsys(&rxrpc_net_ops); |
David Howells | 71f3ca4 | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 1075 | ASSERTCMP(atomic_read(&rxrpc_n_tx_skbs), ==, 0); |
| 1076 | ASSERTCMP(atomic_read(&rxrpc_n_rx_skbs), ==, 0); |
David Howells | 4f95dd7 | 2016-04-04 14:00:35 +0100 | [diff] [blame] | 1077 | |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 1078 | /* Make sure the local and peer records pinned by any dying connections |
| 1079 | * are released. |
| 1080 | */ |
| 1081 | rcu_barrier(); |
| 1082 | rxrpc_destroy_client_conn_ids(); |
| 1083 | |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 1084 | destroy_workqueue(rxrpc_workqueue); |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1085 | rxrpc_exit_security(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1086 | kmem_cache_destroy(rxrpc_call_jar); |
| 1087 | _leave(""); |
| 1088 | } |
| 1089 | |
| 1090 | module_init(af_rxrpc_init); |
| 1091 | module_exit(af_rxrpc_exit); |