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