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