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