Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | /* incoming call handling |
| 3 | * |
| 4 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 10 | #include <linux/module.h> |
| 11 | #include <linux/net.h> |
| 12 | #include <linux/skbuff.h> |
| 13 | #include <linux/errqueue.h> |
| 14 | #include <linux/udp.h> |
| 15 | #include <linux/in.h> |
| 16 | #include <linux/in6.h> |
| 17 | #include <linux/icmp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/gfp.h> |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 19 | #include <linux/circ_buf.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 20 | #include <net/sock.h> |
| 21 | #include <net/af_rxrpc.h> |
| 22 | #include <net/ip.h> |
| 23 | #include "ar-internal.h" |
| 24 | |
| 25 | /* |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 26 | * Preallocate a single service call, connection and peer and, if possible, |
| 27 | * give them a user ID and attach the user's side of the ID to them. |
| 28 | */ |
| 29 | static int rxrpc_service_prealloc_one(struct rxrpc_sock *rx, |
| 30 | struct rxrpc_backlog *b, |
| 31 | rxrpc_notify_rx_t notify_rx, |
| 32 | rxrpc_user_attach_call_t user_attach_call, |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 33 | unsigned long user_call_ID, gfp_t gfp, |
| 34 | unsigned int debug_id) |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 35 | { |
| 36 | const void *here = __builtin_return_address(0); |
| 37 | struct rxrpc_call *call; |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 38 | struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk)); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 39 | int max, tmp; |
| 40 | unsigned int size = RXRPC_BACKLOG_MAX; |
| 41 | unsigned int head, tail, call_head, call_tail; |
| 42 | |
| 43 | max = rx->sk.sk_max_ack_backlog; |
| 44 | tmp = rx->sk.sk_ack_backlog; |
| 45 | if (tmp >= max) { |
| 46 | _leave(" = -ENOBUFS [full %u]", max); |
| 47 | return -ENOBUFS; |
| 48 | } |
| 49 | max -= tmp; |
| 50 | |
| 51 | /* We don't need more conns and peers than we have calls, but on the |
| 52 | * other hand, we shouldn't ever use more peers than conns or conns |
| 53 | * than calls. |
| 54 | */ |
| 55 | call_head = b->call_backlog_head; |
| 56 | call_tail = READ_ONCE(b->call_backlog_tail); |
| 57 | tmp = CIRC_CNT(call_head, call_tail, size); |
| 58 | if (tmp >= max) { |
| 59 | _leave(" = -ENOBUFS [enough %u]", tmp); |
| 60 | return -ENOBUFS; |
| 61 | } |
| 62 | max = tmp + 1; |
| 63 | |
| 64 | head = b->peer_backlog_head; |
| 65 | tail = READ_ONCE(b->peer_backlog_tail); |
| 66 | if (CIRC_CNT(head, tail, size) < max) { |
| 67 | struct rxrpc_peer *peer = rxrpc_alloc_peer(rx->local, gfp); |
| 68 | if (!peer) |
| 69 | return -ENOMEM; |
| 70 | b->peer_backlog[head] = peer; |
| 71 | smp_store_release(&b->peer_backlog_head, |
| 72 | (head + 1) & (size - 1)); |
| 73 | } |
| 74 | |
| 75 | head = b->conn_backlog_head; |
| 76 | tail = READ_ONCE(b->conn_backlog_tail); |
| 77 | if (CIRC_CNT(head, tail, size) < max) { |
| 78 | struct rxrpc_connection *conn; |
| 79 | |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 80 | conn = rxrpc_prealloc_service_connection(rxnet, gfp); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 81 | if (!conn) |
| 82 | return -ENOMEM; |
| 83 | b->conn_backlog[head] = conn; |
| 84 | smp_store_release(&b->conn_backlog_head, |
| 85 | (head + 1) & (size - 1)); |
David Howells | 363deea | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 86 | |
David Howells | 4c1295d | 2019-10-07 10:58:29 +0100 | [diff] [blame^] | 87 | trace_rxrpc_conn(conn->debug_id, rxrpc_conn_new_service, |
David Howells | 363deea | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 88 | atomic_read(&conn->usage), here); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | /* Now it gets complicated, because calls get registered with the |
| 92 | * socket here, particularly if a user ID is preassigned by the user. |
| 93 | */ |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 94 | call = rxrpc_alloc_call(rx, gfp, debug_id); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 95 | if (!call) |
| 96 | return -ENOMEM; |
| 97 | call->flags |= (1 << RXRPC_CALL_IS_SERVICE); |
| 98 | call->state = RXRPC_CALL_SERVER_PREALLOC; |
| 99 | |
| 100 | trace_rxrpc_call(call, rxrpc_call_new_service, |
| 101 | atomic_read(&call->usage), |
| 102 | here, (const void *)user_call_ID); |
| 103 | |
| 104 | write_lock(&rx->call_lock); |
| 105 | if (user_attach_call) { |
| 106 | struct rxrpc_call *xcall; |
| 107 | struct rb_node *parent, **pp; |
| 108 | |
| 109 | /* Check the user ID isn't already in use */ |
| 110 | pp = &rx->calls.rb_node; |
| 111 | parent = NULL; |
| 112 | while (*pp) { |
| 113 | parent = *pp; |
| 114 | xcall = rb_entry(parent, struct rxrpc_call, sock_node); |
YueHaibing | c01f6c9 | 2018-08-01 13:27:23 +0100 | [diff] [blame] | 115 | if (user_call_ID < xcall->user_call_ID) |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 116 | pp = &(*pp)->rb_left; |
YueHaibing | c01f6c9 | 2018-08-01 13:27:23 +0100 | [diff] [blame] | 117 | else if (user_call_ID > xcall->user_call_ID) |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 118 | pp = &(*pp)->rb_right; |
| 119 | else |
| 120 | goto id_in_use; |
| 121 | } |
| 122 | |
| 123 | call->user_call_ID = user_call_ID; |
| 124 | call->notify_rx = notify_rx; |
David Howells | cbd0089 | 2016-09-13 09:12:34 +0100 | [diff] [blame] | 125 | rxrpc_get_call(call, rxrpc_call_got_kernel); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 126 | user_attach_call(call, user_call_ID); |
| 127 | rxrpc_get_call(call, rxrpc_call_got_userid); |
| 128 | rb_link_node(&call->sock_node, parent, pp); |
| 129 | rb_insert_color(&call->sock_node, &rx->calls); |
| 130 | set_bit(RXRPC_CALL_HAS_USERID, &call->flags); |
| 131 | } |
| 132 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 133 | list_add(&call->sock_link, &rx->sock_calls); |
| 134 | |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 135 | write_unlock(&rx->call_lock); |
| 136 | |
David Howells | d3be4d2 | 2018-03-30 21:05:23 +0100 | [diff] [blame] | 137 | rxnet = call->rxnet; |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 138 | write_lock(&rxnet->call_lock); |
| 139 | list_add_tail(&call->link, &rxnet->calls); |
| 140 | write_unlock(&rxnet->call_lock); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 141 | |
| 142 | b->call_backlog[call_head] = call; |
| 143 | smp_store_release(&b->call_backlog_head, (call_head + 1) & (size - 1)); |
| 144 | _leave(" = 0 [%d -> %lx]", call->debug_id, user_call_ID); |
| 145 | return 0; |
| 146 | |
| 147 | id_in_use: |
| 148 | write_unlock(&rx->call_lock); |
| 149 | rxrpc_cleanup_call(call); |
| 150 | _leave(" = -EBADSLT"); |
| 151 | return -EBADSLT; |
| 152 | } |
| 153 | |
| 154 | /* |
| 155 | * Preallocate sufficient service connections, calls and peers to cover the |
| 156 | * entire backlog of a socket. When a new call comes in, if we don't have |
| 157 | * sufficient of each available, the call gets rejected as busy or ignored. |
| 158 | * |
| 159 | * The backlog is replenished when a connection is accepted or rejected. |
| 160 | */ |
| 161 | int rxrpc_service_prealloc(struct rxrpc_sock *rx, gfp_t gfp) |
| 162 | { |
| 163 | struct rxrpc_backlog *b = rx->backlog; |
| 164 | |
| 165 | if (!b) { |
| 166 | b = kzalloc(sizeof(struct rxrpc_backlog), gfp); |
| 167 | if (!b) |
| 168 | return -ENOMEM; |
| 169 | rx->backlog = b; |
| 170 | } |
| 171 | |
| 172 | if (rx->discard_new_call) |
| 173 | return 0; |
| 174 | |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 175 | while (rxrpc_service_prealloc_one(rx, b, NULL, NULL, 0, gfp, |
| 176 | atomic_inc_return(&rxrpc_debug_id)) == 0) |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 177 | ; |
| 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * Discard the preallocation on a service. |
| 184 | */ |
| 185 | void rxrpc_discard_prealloc(struct rxrpc_sock *rx) |
| 186 | { |
| 187 | struct rxrpc_backlog *b = rx->backlog; |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 188 | struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk)); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 189 | unsigned int size = RXRPC_BACKLOG_MAX, head, tail; |
| 190 | |
| 191 | if (!b) |
| 192 | return; |
| 193 | rx->backlog = NULL; |
| 194 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 195 | /* Make sure that there aren't any incoming calls in progress before we |
| 196 | * clear the preallocation buffers. |
| 197 | */ |
| 198 | spin_lock_bh(&rx->incoming_lock); |
| 199 | spin_unlock_bh(&rx->incoming_lock); |
| 200 | |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 201 | head = b->peer_backlog_head; |
| 202 | tail = b->peer_backlog_tail; |
| 203 | while (CIRC_CNT(head, tail, size) > 0) { |
| 204 | struct rxrpc_peer *peer = b->peer_backlog[tail]; |
| 205 | kfree(peer); |
| 206 | tail = (tail + 1) & (size - 1); |
| 207 | } |
| 208 | |
| 209 | head = b->conn_backlog_head; |
| 210 | tail = b->conn_backlog_tail; |
| 211 | while (CIRC_CNT(head, tail, size) > 0) { |
| 212 | struct rxrpc_connection *conn = b->conn_backlog[tail]; |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 213 | write_lock(&rxnet->conn_lock); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 214 | list_del(&conn->link); |
| 215 | list_del(&conn->proc_link); |
David Howells | 2baec2c | 2017-05-24 17:02:32 +0100 | [diff] [blame] | 216 | write_unlock(&rxnet->conn_lock); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 217 | kfree(conn); |
David Howells | 31f5f9a16 | 2018-03-30 21:05:33 +0100 | [diff] [blame] | 218 | if (atomic_dec_and_test(&rxnet->nr_conns)) |
Linus Torvalds | 5bb053b | 2018-04-03 14:04:18 -0700 | [diff] [blame] | 219 | wake_up_var(&rxnet->nr_conns); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 220 | tail = (tail + 1) & (size - 1); |
| 221 | } |
| 222 | |
| 223 | head = b->call_backlog_head; |
| 224 | tail = b->call_backlog_tail; |
| 225 | while (CIRC_CNT(head, tail, size) > 0) { |
| 226 | struct rxrpc_call *call = b->call_backlog[tail]; |
David Howells | 88f2a825 | 2018-03-30 21:05:17 +0100 | [diff] [blame] | 227 | rcu_assign_pointer(call->socket, rx); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 228 | if (rx->discard_new_call) { |
| 229 | _debug("discard %lx", call->user_call_ID); |
| 230 | rx->discard_new_call(call, call->user_call_ID); |
David Howells | 3432a75 | 2016-09-13 09:05:14 +0100 | [diff] [blame] | 231 | rxrpc_put_call(call, rxrpc_call_put_kernel); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 232 | } |
| 233 | rxrpc_call_completed(call); |
| 234 | rxrpc_release_call(rx, call); |
| 235 | rxrpc_put_call(call, rxrpc_call_put); |
| 236 | tail = (tail + 1) & (size - 1); |
| 237 | } |
| 238 | |
| 239 | kfree(b); |
| 240 | } |
| 241 | |
| 242 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 243 | * Allocate a new incoming call from the prealloc pool, along with a connection |
| 244 | * and a peer as necessary. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 245 | */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 246 | static struct rxrpc_call *rxrpc_alloc_incoming_call(struct rxrpc_sock *rx, |
| 247 | struct rxrpc_local *local, |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 248 | struct rxrpc_peer *peer, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 249 | struct rxrpc_connection *conn, |
| 250 | struct sk_buff *skb) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 251 | { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 252 | struct rxrpc_backlog *b = rx->backlog; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 253 | struct rxrpc_call *call; |
| 254 | unsigned short call_head, conn_head, peer_head; |
| 255 | unsigned short call_tail, conn_tail, peer_tail; |
| 256 | unsigned short call_count, conn_count; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 257 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 258 | /* #calls >= #conns >= #peers must hold true. */ |
| 259 | call_head = smp_load_acquire(&b->call_backlog_head); |
| 260 | call_tail = b->call_backlog_tail; |
| 261 | call_count = CIRC_CNT(call_head, call_tail, RXRPC_BACKLOG_MAX); |
| 262 | conn_head = smp_load_acquire(&b->conn_backlog_head); |
| 263 | conn_tail = b->conn_backlog_tail; |
| 264 | conn_count = CIRC_CNT(conn_head, conn_tail, RXRPC_BACKLOG_MAX); |
| 265 | ASSERTCMP(conn_count, >=, call_count); |
| 266 | peer_head = smp_load_acquire(&b->peer_backlog_head); |
| 267 | peer_tail = b->peer_backlog_tail; |
| 268 | ASSERTCMP(CIRC_CNT(peer_head, peer_tail, RXRPC_BACKLOG_MAX), >=, |
| 269 | conn_count); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 270 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 271 | if (call_count == 0) |
| 272 | return NULL; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 273 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 274 | if (!conn) { |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 275 | if (peer && !rxrpc_get_peer_maybe(peer)) |
| 276 | peer = NULL; |
| 277 | if (!peer) { |
| 278 | peer = b->peer_backlog[peer_tail]; |
David Howells | 5a790b7 | 2018-10-04 09:32:28 +0100 | [diff] [blame] | 279 | if (rxrpc_extract_addr_from_skb(&peer->srx, skb) < 0) |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 280 | return NULL; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 281 | b->peer_backlog[peer_tail] = NULL; |
| 282 | smp_store_release(&b->peer_backlog_tail, |
| 283 | (peer_tail + 1) & |
| 284 | (RXRPC_BACKLOG_MAX - 1)); |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 285 | |
David Howells | 5e33a23 | 2018-10-05 14:05:34 +0100 | [diff] [blame] | 286 | rxrpc_new_incoming_peer(rx, local, peer); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 287 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 288 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 289 | /* Now allocate and set up the connection */ |
| 290 | conn = b->conn_backlog[conn_tail]; |
| 291 | b->conn_backlog[conn_tail] = NULL; |
| 292 | smp_store_release(&b->conn_backlog_tail, |
| 293 | (conn_tail + 1) & (RXRPC_BACKLOG_MAX - 1)); |
David Howells | 09d2bf5 | 2018-03-30 21:05:28 +0100 | [diff] [blame] | 294 | conn->params.local = rxrpc_get_local(local); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 295 | conn->params.peer = peer; |
David Howells | 363deea | 2016-09-17 10:49:14 +0100 | [diff] [blame] | 296 | rxrpc_see_connection(conn); |
David Howells | 4722974 | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 297 | rxrpc_new_incoming_connection(rx, conn, skb); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 298 | } else { |
| 299 | rxrpc_get_connection(conn); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 300 | } |
| 301 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 302 | /* And now we can allocate and set up a new call */ |
| 303 | call = b->call_backlog[call_tail]; |
| 304 | b->call_backlog[call_tail] = NULL; |
| 305 | smp_store_release(&b->call_backlog_tail, |
| 306 | (call_tail + 1) & (RXRPC_BACKLOG_MAX - 1)); |
| 307 | |
David Howells | cbd0089 | 2016-09-13 09:12:34 +0100 | [diff] [blame] | 308 | rxrpc_see_call(call); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 309 | call->conn = conn; |
| 310 | call->peer = rxrpc_get_peer(conn->params.peer); |
David Howells | f7aec12 | 2017-06-14 17:56:50 +0100 | [diff] [blame] | 311 | call->cong_cwnd = call->peer->cong_cwnd; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 312 | return call; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 316 | * Set up a new incoming call. Called in BH context with the RCU read lock |
| 317 | * held. |
| 318 | * |
| 319 | * If this is for a kernel service, when we allocate the call, it will have |
| 320 | * three refs on it: (1) the kernel service, (2) the user_call_ID tree, (3) the |
| 321 | * retainer ref obtained from the backlog buffer. Prealloc calls for userspace |
| 322 | * services only have the ref from the backlog buffer. We want to pass this |
| 323 | * ref to non-BH context to dispose of. |
| 324 | * |
| 325 | * If we want to report an error, we mark the skb with the packet type and |
| 326 | * abort code and return NULL. |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 327 | * |
| 328 | * The call is returned with the user access mutex held. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 329 | */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 330 | struct rxrpc_call *rxrpc_new_incoming_call(struct rxrpc_local *local, |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 331 | struct rxrpc_sock *rx, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 332 | struct sk_buff *skb) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 333 | { |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 334 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
David Howells | c1e15b4 | 2018-10-08 15:46:25 +0100 | [diff] [blame] | 335 | struct rxrpc_connection *conn; |
David Howells | d7b4c24 | 2018-10-11 22:32:31 +0100 | [diff] [blame] | 336 | struct rxrpc_peer *peer = NULL; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 337 | struct rxrpc_call *call; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 338 | |
| 339 | _enter(""); |
| 340 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 341 | spin_lock(&rx->incoming_lock); |
David Howells | 210f035 | 2017-01-05 10:38:36 +0000 | [diff] [blame] | 342 | if (rx->sk.sk_state == RXRPC_SERVER_LISTEN_DISABLED || |
| 343 | rx->sk.sk_state == RXRPC_CLOSE) { |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 344 | trace_rxrpc_abort(0, "CLS", sp->hdr.cid, sp->hdr.callNumber, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 345 | sp->hdr.seq, RX_INVALID_OPERATION, ESHUTDOWN); |
David Howells | ece64fe | 2018-09-27 15:13:08 +0100 | [diff] [blame] | 346 | skb->mark = RXRPC_SKB_MARK_REJECT_ABORT; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 347 | skb->priority = RX_INVALID_OPERATION; |
| 348 | _leave(" = NULL [close]"); |
| 349 | call = NULL; |
| 350 | goto out; |
| 351 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 352 | |
David Howells | c1e15b4 | 2018-10-08 15:46:25 +0100 | [diff] [blame] | 353 | /* The peer, connection and call may all have sprung into existence due |
| 354 | * to a duplicate packet being handled on another CPU in parallel, so |
| 355 | * we have to recheck the routing. However, we're now holding |
| 356 | * rx->incoming_lock, so the values should remain stable. |
| 357 | */ |
| 358 | conn = rxrpc_find_connection_rcu(local, skb, &peer); |
| 359 | |
David Howells | 0099dc5 | 2018-09-27 15:13:09 +0100 | [diff] [blame] | 360 | call = rxrpc_alloc_incoming_call(rx, local, peer, conn, skb); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 361 | if (!call) { |
David Howells | ece64fe | 2018-09-27 15:13:08 +0100 | [diff] [blame] | 362 | skb->mark = RXRPC_SKB_MARK_REJECT_BUSY; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 363 | _leave(" = NULL [busy]"); |
| 364 | call = NULL; |
| 365 | goto out; |
| 366 | } |
| 367 | |
David Howells | 58dc63c | 2016-09-17 10:49:13 +0100 | [diff] [blame] | 368 | trace_rxrpc_receive(call, rxrpc_receive_incoming, |
| 369 | sp->hdr.serial, sp->hdr.seq); |
| 370 | |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 371 | /* Lock the call to prevent rxrpc_kernel_send/recv_data() and |
| 372 | * sendmsg()/recvmsg() inconveniently stealing the mutex once the |
| 373 | * notification is generated. |
| 374 | * |
| 375 | * The BUG should never happen because the kernel should be well |
| 376 | * behaved enough not to access the call before the first notification |
| 377 | * event and userspace is prevented from doing so until the state is |
| 378 | * appropriate. |
| 379 | */ |
| 380 | if (!mutex_trylock(&call->user_mutex)) |
| 381 | BUG(); |
| 382 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 383 | /* Make the call live. */ |
| 384 | rxrpc_incoming_call(rx, call, skb); |
| 385 | conn = call->conn; |
| 386 | |
| 387 | if (rx->notify_new_call) |
| 388 | rx->notify_new_call(&rx->sk, call, call->user_call_ID); |
David Howells | e6f3afb | 2016-09-17 10:49:11 +0100 | [diff] [blame] | 389 | else |
| 390 | sk_acceptq_added(&rx->sk); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 391 | |
| 392 | spin_lock(&conn->state_lock); |
| 393 | switch (conn->state) { |
| 394 | case RXRPC_CONN_SERVICE_UNSECURED: |
| 395 | conn->state = RXRPC_CONN_SERVICE_CHALLENGING; |
| 396 | set_bit(RXRPC_CONN_EV_CHALLENGE, &call->conn->events); |
| 397 | rxrpc_queue_conn(call->conn); |
| 398 | break; |
| 399 | |
| 400 | case RXRPC_CONN_SERVICE: |
| 401 | write_lock(&call->state_lock); |
David Howells | c1e15b4 | 2018-10-08 15:46:25 +0100 | [diff] [blame] | 402 | if (call->state < RXRPC_CALL_COMPLETE) { |
| 403 | if (rx->discard_new_call) |
| 404 | call->state = RXRPC_CALL_SERVER_RECV_REQUEST; |
| 405 | else |
| 406 | call->state = RXRPC_CALL_SERVER_ACCEPTING; |
| 407 | } |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 408 | write_unlock(&call->state_lock); |
| 409 | break; |
| 410 | |
| 411 | case RXRPC_CONN_REMOTELY_ABORTED: |
| 412 | rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED, |
David Howells | 6475309 | 2018-10-08 15:46:17 +0100 | [diff] [blame] | 413 | conn->abort_code, conn->error); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 414 | break; |
| 415 | case RXRPC_CONN_LOCALLY_ABORTED: |
| 416 | rxrpc_abort_call("CON", call, sp->hdr.seq, |
David Howells | 6475309 | 2018-10-08 15:46:17 +0100 | [diff] [blame] | 417 | conn->abort_code, conn->error); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 418 | break; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 419 | default: |
| 420 | BUG(); |
| 421 | } |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 422 | spin_unlock(&conn->state_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 423 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 424 | if (call->state == RXRPC_CALL_SERVER_ACCEPTING) |
| 425 | rxrpc_notify_socket(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 426 | |
David Howells | 3432a75 | 2016-09-13 09:05:14 +0100 | [diff] [blame] | 427 | /* We have to discard the prealloc queue's ref here and rely on a |
| 428 | * combination of the RCU read lock and refs held either by the socket |
| 429 | * (recvmsg queue, to-be-accepted queue or user ID tree) or the kernel |
| 430 | * service to prevent the call from being deallocated too early. |
| 431 | */ |
| 432 | rxrpc_put_call(call, rxrpc_call_put); |
| 433 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 434 | _leave(" = %p{%d}", call, call->debug_id); |
| 435 | out: |
| 436 | spin_unlock(&rx->incoming_lock); |
| 437 | return call; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | /* |
| 441 | * handle acceptance of a call by userspace |
| 442 | * - assign the user call ID to the call at the front of the queue |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 443 | * - called with the socket locked. |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 444 | */ |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 445 | struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *rx, |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 446 | unsigned long user_call_ID, |
| 447 | rxrpc_notify_rx_t notify_rx) |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 448 | __releases(&rx->sk.sk_lock.slock) |
David Howells | 88f2a825 | 2018-03-30 21:05:17 +0100 | [diff] [blame] | 449 | __acquires(call->user_mutex) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 450 | { |
| 451 | struct rxrpc_call *call; |
| 452 | struct rb_node *parent, **pp; |
| 453 | int ret; |
| 454 | |
| 455 | _enter(",%lx", user_call_ID); |
| 456 | |
| 457 | ASSERT(!irqs_disabled()); |
| 458 | |
| 459 | write_lock(&rx->call_lock); |
| 460 | |
David Howells | b25de36 | 2016-09-13 22:36:22 +0100 | [diff] [blame] | 461 | if (list_empty(&rx->to_be_accepted)) { |
| 462 | write_unlock(&rx->call_lock); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 463 | release_sock(&rx->sk); |
David Howells | b25de36 | 2016-09-13 22:36:22 +0100 | [diff] [blame] | 464 | kleave(" = -ENODATA [empty]"); |
| 465 | return ERR_PTR(-ENODATA); |
| 466 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 467 | |
| 468 | /* check the user ID isn't already in use */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 469 | pp = &rx->calls.rb_node; |
| 470 | parent = NULL; |
| 471 | while (*pp) { |
| 472 | parent = *pp; |
| 473 | call = rb_entry(parent, struct rxrpc_call, sock_node); |
| 474 | |
| 475 | if (user_call_ID < call->user_call_ID) |
| 476 | pp = &(*pp)->rb_left; |
| 477 | else if (user_call_ID > call->user_call_ID) |
| 478 | pp = &(*pp)->rb_right; |
| 479 | else |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 480 | goto id_in_use; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 481 | } |
| 482 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 483 | /* Dequeue the first call and check it's still valid. We gain |
| 484 | * responsibility for the queue's reference. |
| 485 | */ |
| 486 | call = list_entry(rx->to_be_accepted.next, |
| 487 | struct rxrpc_call, accept_link); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 488 | write_unlock(&rx->call_lock); |
| 489 | |
| 490 | /* We need to gain the mutex from the interrupt handler without |
| 491 | * upsetting lockdep, so we have to release it there and take it here. |
| 492 | * We are, however, still holding the socket lock, so other accepts |
| 493 | * must wait for us and no one can add the user ID behind our backs. |
| 494 | */ |
| 495 | if (mutex_lock_interruptible(&call->user_mutex) < 0) { |
| 496 | release_sock(&rx->sk); |
| 497 | kleave(" = -ERESTARTSYS"); |
| 498 | return ERR_PTR(-ERESTARTSYS); |
| 499 | } |
| 500 | |
| 501 | write_lock(&rx->call_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 502 | list_del_init(&call->accept_link); |
| 503 | sk_acceptq_removed(&rx->sk); |
David Howells | e34d423 | 2016-08-30 09:49:29 +0100 | [diff] [blame] | 504 | rxrpc_see_call(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 505 | |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 506 | /* Find the user ID insertion point. */ |
| 507 | pp = &rx->calls.rb_node; |
| 508 | parent = NULL; |
| 509 | while (*pp) { |
| 510 | parent = *pp; |
| 511 | call = rb_entry(parent, struct rxrpc_call, sock_node); |
| 512 | |
| 513 | if (user_call_ID < call->user_call_ID) |
| 514 | pp = &(*pp)->rb_left; |
| 515 | else if (user_call_ID > call->user_call_ID) |
| 516 | pp = &(*pp)->rb_right; |
| 517 | else |
| 518 | BUG(); |
| 519 | } |
| 520 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 521 | write_lock_bh(&call->state_lock); |
| 522 | switch (call->state) { |
| 523 | case RXRPC_CALL_SERVER_ACCEPTING: |
| 524 | call->state = RXRPC_CALL_SERVER_RECV_REQUEST; |
| 525 | break; |
David Howells | f5c17aa | 2016-08-30 09:49:28 +0100 | [diff] [blame] | 526 | case RXRPC_CALL_COMPLETE: |
| 527 | ret = call->error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 528 | goto out_release; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 529 | default: |
| 530 | BUG(); |
| 531 | } |
| 532 | |
| 533 | /* formalise the acceptance */ |
David Howells | d001648 | 2016-08-30 20:42:14 +0100 | [diff] [blame] | 534 | call->notify_rx = notify_rx; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 535 | call->user_call_ID = user_call_ID; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 536 | rxrpc_get_call(call, rxrpc_call_got_userid); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 537 | rb_link_node(&call->sock_node, parent, pp); |
| 538 | rb_insert_color(&call->sock_node, &rx->calls); |
| 539 | if (test_and_set_bit(RXRPC_CALL_HAS_USERID, &call->flags)) |
| 540 | BUG(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 541 | |
| 542 | write_unlock_bh(&call->state_lock); |
| 543 | write_unlock(&rx->call_lock); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 544 | rxrpc_notify_socket(call); |
| 545 | rxrpc_service_prealloc(rx, GFP_KERNEL); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 546 | release_sock(&rx->sk); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 547 | _leave(" = %p{%d}", call, call->debug_id); |
| 548 | return call; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 549 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 550 | out_release: |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 551 | _debug("release %p", call); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 552 | write_unlock_bh(&call->state_lock); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 553 | write_unlock(&rx->call_lock); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 554 | rxrpc_release_call(rx, call); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 555 | rxrpc_put_call(call, rxrpc_call_put); |
| 556 | goto out; |
| 557 | |
| 558 | id_in_use: |
| 559 | ret = -EBADSLT; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 560 | write_unlock(&rx->call_lock); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 561 | out: |
| 562 | rxrpc_service_prealloc(rx, GFP_KERNEL); |
David Howells | 540b1c4 | 2017-02-27 15:43:06 +0000 | [diff] [blame] | 563 | release_sock(&rx->sk); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 564 | _leave(" = %d", ret); |
| 565 | return ERR_PTR(ret); |
| 566 | } |
| 567 | |
| 568 | /* |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 569 | * Handle rejection of a call by userspace |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 570 | * - reject the call at the front of the queue |
| 571 | */ |
| 572 | int rxrpc_reject_call(struct rxrpc_sock *rx) |
| 573 | { |
| 574 | struct rxrpc_call *call; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 575 | bool abort = false; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 576 | int ret; |
| 577 | |
| 578 | _enter(""); |
| 579 | |
| 580 | ASSERT(!irqs_disabled()); |
| 581 | |
| 582 | write_lock(&rx->call_lock); |
| 583 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 584 | if (list_empty(&rx->to_be_accepted)) { |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 585 | write_unlock(&rx->call_lock); |
David Howells | 8d94aa3 | 2016-09-07 09:19:31 +0100 | [diff] [blame] | 586 | return -ENODATA; |
| 587 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 588 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 589 | /* Dequeue the first call and check it's still valid. We gain |
| 590 | * responsibility for the queue's reference. |
| 591 | */ |
| 592 | call = list_entry(rx->to_be_accepted.next, |
| 593 | struct rxrpc_call, accept_link); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 594 | list_del_init(&call->accept_link); |
| 595 | sk_acceptq_removed(&rx->sk); |
David Howells | e34d423 | 2016-08-30 09:49:29 +0100 | [diff] [blame] | 596 | rxrpc_see_call(call); |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 597 | |
| 598 | write_lock_bh(&call->state_lock); |
| 599 | switch (call->state) { |
| 600 | case RXRPC_CALL_SERVER_ACCEPTING: |
David Howells | 3a92789 | 2017-04-06 10:11:56 +0100 | [diff] [blame] | 601 | __rxrpc_abort_call("REJ", call, 1, RX_USER_ABORT, -ECONNABORTED); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 602 | abort = true; |
| 603 | /* fall through */ |
David Howells | f5c17aa | 2016-08-30 09:49:28 +0100 | [diff] [blame] | 604 | case RXRPC_CALL_COMPLETE: |
| 605 | ret = call->error; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 606 | goto out_discard; |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 607 | default: |
| 608 | BUG(); |
| 609 | } |
| 610 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 611 | out_discard: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 612 | write_unlock_bh(&call->state_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 613 | write_unlock(&rx->call_lock); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 614 | if (abort) { |
David Howells | 26cb02a | 2016-10-06 08:11:49 +0100 | [diff] [blame] | 615 | rxrpc_send_abort_packet(call); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 616 | rxrpc_release_call(rx, call); |
| 617 | rxrpc_put_call(call, rxrpc_call_put); |
| 618 | } |
| 619 | rxrpc_service_prealloc(rx, GFP_KERNEL); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 620 | _leave(" = %d", ret); |
| 621 | return ret; |
| 622 | } |
David Howells | 651350d | 2007-04-26 15:50:17 -0700 | [diff] [blame] | 623 | |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 624 | /* |
| 625 | * rxrpc_kernel_charge_accept - Charge up socket with preallocated calls |
| 626 | * @sock: The socket on which to preallocate |
| 627 | * @notify_rx: Event notification function for the call |
| 628 | * @user_attach_call: Func to attach call to user_call_ID |
| 629 | * @user_call_ID: The tag to attach to the preallocated call |
| 630 | * @gfp: The allocation conditions. |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 631 | * @debug_id: The tracing debug ID. |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 632 | * |
| 633 | * Charge up the socket with preallocated calls, each with a user ID. A |
| 634 | * function should be provided to effect the attachment from the user's side. |
| 635 | * The user is given a ref to hold on the call. |
| 636 | * |
| 637 | * Note that the call may be come connected before this function returns. |
| 638 | */ |
| 639 | int rxrpc_kernel_charge_accept(struct socket *sock, |
| 640 | rxrpc_notify_rx_t notify_rx, |
| 641 | rxrpc_user_attach_call_t user_attach_call, |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 642 | unsigned long user_call_ID, gfp_t gfp, |
| 643 | unsigned int debug_id) |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 644 | { |
| 645 | struct rxrpc_sock *rx = rxrpc_sk(sock->sk); |
| 646 | struct rxrpc_backlog *b = rx->backlog; |
| 647 | |
| 648 | if (sock->sk->sk_state == RXRPC_CLOSE) |
| 649 | return -ESHUTDOWN; |
| 650 | |
| 651 | return rxrpc_service_prealloc_one(rx, b, notify_rx, |
| 652 | user_attach_call, user_call_ID, |
David Howells | a25e21f | 2018-03-27 23:03:00 +0100 | [diff] [blame] | 653 | gfp, debug_id); |
David Howells | 00e9071 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 654 | } |
| 655 | EXPORT_SYMBOL(rxrpc_kernel_charge_accept); |