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