blob: dd30d74824b0de42d1866f4449300f89c83d6724 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* incoming call handling
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 Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/net.h>
16#include <linux/skbuff.h>
17#include <linux/errqueue.h>
18#include <linux/udp.h>
19#include <linux/in.h>
20#include <linux/in6.h>
21#include <linux/icmp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
David Howells00e90712016-09-08 11:10:12 +010023#include <linux/circ_buf.h>
David Howells17926a72007-04-26 15:48:28 -070024#include <net/sock.h>
25#include <net/af_rxrpc.h>
26#include <net/ip.h>
27#include "ar-internal.h"
28
29/*
David Howells00e90712016-09-08 11:10:12 +010030 * Preallocate a single service call, connection and peer and, if possible,
31 * give them a user ID and attach the user's side of the ID to them.
32 */
33static int rxrpc_service_prealloc_one(struct rxrpc_sock *rx,
34 struct rxrpc_backlog *b,
35 rxrpc_notify_rx_t notify_rx,
36 rxrpc_user_attach_call_t user_attach_call,
37 unsigned long user_call_ID, gfp_t gfp)
38{
39 const void *here = __builtin_return_address(0);
40 struct rxrpc_call *call;
David Howells2baec2c2017-05-24 17:02:32 +010041 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
David Howells00e90712016-09-08 11:10:12 +010042 int max, tmp;
43 unsigned int size = RXRPC_BACKLOG_MAX;
44 unsigned int head, tail, call_head, call_tail;
45
46 max = rx->sk.sk_max_ack_backlog;
47 tmp = rx->sk.sk_ack_backlog;
48 if (tmp >= max) {
49 _leave(" = -ENOBUFS [full %u]", max);
50 return -ENOBUFS;
51 }
52 max -= tmp;
53
54 /* We don't need more conns and peers than we have calls, but on the
55 * other hand, we shouldn't ever use more peers than conns or conns
56 * than calls.
57 */
58 call_head = b->call_backlog_head;
59 call_tail = READ_ONCE(b->call_backlog_tail);
60 tmp = CIRC_CNT(call_head, call_tail, size);
61 if (tmp >= max) {
62 _leave(" = -ENOBUFS [enough %u]", tmp);
63 return -ENOBUFS;
64 }
65 max = tmp + 1;
66
67 head = b->peer_backlog_head;
68 tail = READ_ONCE(b->peer_backlog_tail);
69 if (CIRC_CNT(head, tail, size) < max) {
70 struct rxrpc_peer *peer = rxrpc_alloc_peer(rx->local, gfp);
71 if (!peer)
72 return -ENOMEM;
73 b->peer_backlog[head] = peer;
74 smp_store_release(&b->peer_backlog_head,
75 (head + 1) & (size - 1));
76 }
77
78 head = b->conn_backlog_head;
79 tail = READ_ONCE(b->conn_backlog_tail);
80 if (CIRC_CNT(head, tail, size) < max) {
81 struct rxrpc_connection *conn;
82
David Howells2baec2c2017-05-24 17:02:32 +010083 conn = rxrpc_prealloc_service_connection(rxnet, gfp);
David Howells00e90712016-09-08 11:10:12 +010084 if (!conn)
85 return -ENOMEM;
86 b->conn_backlog[head] = conn;
87 smp_store_release(&b->conn_backlog_head,
88 (head + 1) & (size - 1));
David Howells363deea2016-09-17 10:49:14 +010089
90 trace_rxrpc_conn(conn, rxrpc_conn_new_service,
91 atomic_read(&conn->usage), here);
David Howells00e90712016-09-08 11:10:12 +010092 }
93
94 /* Now it gets complicated, because calls get registered with the
95 * socket here, particularly if a user ID is preassigned by the user.
96 */
97 call = rxrpc_alloc_call(gfp);
98 if (!call)
99 return -ENOMEM;
100 call->flags |= (1 << RXRPC_CALL_IS_SERVICE);
101 call->state = RXRPC_CALL_SERVER_PREALLOC;
102
103 trace_rxrpc_call(call, rxrpc_call_new_service,
104 atomic_read(&call->usage),
105 here, (const void *)user_call_ID);
106
107 write_lock(&rx->call_lock);
108 if (user_attach_call) {
109 struct rxrpc_call *xcall;
110 struct rb_node *parent, **pp;
111
112 /* Check the user ID isn't already in use */
113 pp = &rx->calls.rb_node;
114 parent = NULL;
115 while (*pp) {
116 parent = *pp;
117 xcall = rb_entry(parent, struct rxrpc_call, sock_node);
118 if (user_call_ID < call->user_call_ID)
119 pp = &(*pp)->rb_left;
120 else if (user_call_ID > call->user_call_ID)
121 pp = &(*pp)->rb_right;
122 else
123 goto id_in_use;
124 }
125
126 call->user_call_ID = user_call_ID;
127 call->notify_rx = notify_rx;
David Howellscbd00892016-09-13 09:12:34 +0100128 rxrpc_get_call(call, rxrpc_call_got_kernel);
David Howells00e90712016-09-08 11:10:12 +0100129 user_attach_call(call, user_call_ID);
130 rxrpc_get_call(call, rxrpc_call_got_userid);
131 rb_link_node(&call->sock_node, parent, pp);
132 rb_insert_color(&call->sock_node, &rx->calls);
133 set_bit(RXRPC_CALL_HAS_USERID, &call->flags);
134 }
135
David Howells248f2192016-09-08 11:10:12 +0100136 list_add(&call->sock_link, &rx->sock_calls);
137
David Howells00e90712016-09-08 11:10:12 +0100138 write_unlock(&rx->call_lock);
139
David Howells2baec2c2017-05-24 17:02:32 +0100140 write_lock(&rxnet->call_lock);
141 list_add_tail(&call->link, &rxnet->calls);
142 write_unlock(&rxnet->call_lock);
David Howells00e90712016-09-08 11:10:12 +0100143
144 b->call_backlog[call_head] = call;
145 smp_store_release(&b->call_backlog_head, (call_head + 1) & (size - 1));
146 _leave(" = 0 [%d -> %lx]", call->debug_id, user_call_ID);
147 return 0;
148
149id_in_use:
150 write_unlock(&rx->call_lock);
151 rxrpc_cleanup_call(call);
152 _leave(" = -EBADSLT");
153 return -EBADSLT;
154}
155
156/*
157 * Preallocate sufficient service connections, calls and peers to cover the
158 * entire backlog of a socket. When a new call comes in, if we don't have
159 * sufficient of each available, the call gets rejected as busy or ignored.
160 *
161 * The backlog is replenished when a connection is accepted or rejected.
162 */
163int rxrpc_service_prealloc(struct rxrpc_sock *rx, gfp_t gfp)
164{
165 struct rxrpc_backlog *b = rx->backlog;
166
167 if (!b) {
168 b = kzalloc(sizeof(struct rxrpc_backlog), gfp);
169 if (!b)
170 return -ENOMEM;
171 rx->backlog = b;
172 }
173
174 if (rx->discard_new_call)
175 return 0;
176
177 while (rxrpc_service_prealloc_one(rx, b, NULL, NULL, 0, gfp) == 0)
178 ;
179
180 return 0;
181}
182
183/*
184 * Discard the preallocation on a service.
185 */
186void rxrpc_discard_prealloc(struct rxrpc_sock *rx)
187{
188 struct rxrpc_backlog *b = rx->backlog;
David Howells2baec2c2017-05-24 17:02:32 +0100189 struct rxrpc_net *rxnet = rxrpc_net(sock_net(&rx->sk));
David Howells00e90712016-09-08 11:10:12 +0100190 unsigned int size = RXRPC_BACKLOG_MAX, head, tail;
191
192 if (!b)
193 return;
194 rx->backlog = NULL;
195
David Howells248f2192016-09-08 11:10:12 +0100196 /* Make sure that there aren't any incoming calls in progress before we
197 * clear the preallocation buffers.
198 */
199 spin_lock_bh(&rx->incoming_lock);
200 spin_unlock_bh(&rx->incoming_lock);
201
David Howells00e90712016-09-08 11:10:12 +0100202 head = b->peer_backlog_head;
203 tail = b->peer_backlog_tail;
204 while (CIRC_CNT(head, tail, size) > 0) {
205 struct rxrpc_peer *peer = b->peer_backlog[tail];
206 kfree(peer);
207 tail = (tail + 1) & (size - 1);
208 }
209
210 head = b->conn_backlog_head;
211 tail = b->conn_backlog_tail;
212 while (CIRC_CNT(head, tail, size) > 0) {
213 struct rxrpc_connection *conn = b->conn_backlog[tail];
David Howells2baec2c2017-05-24 17:02:32 +0100214 write_lock(&rxnet->conn_lock);
David Howells00e90712016-09-08 11:10:12 +0100215 list_del(&conn->link);
216 list_del(&conn->proc_link);
David Howells2baec2c2017-05-24 17:02:32 +0100217 write_unlock(&rxnet->conn_lock);
David Howells00e90712016-09-08 11:10:12 +0100218 kfree(conn);
219 tail = (tail + 1) & (size - 1);
220 }
221
222 head = b->call_backlog_head;
223 tail = b->call_backlog_tail;
224 while (CIRC_CNT(head, tail, size) > 0) {
225 struct rxrpc_call *call = b->call_backlog[tail];
226 if (rx->discard_new_call) {
227 _debug("discard %lx", call->user_call_ID);
228 rx->discard_new_call(call, call->user_call_ID);
David Howells3432a752016-09-13 09:05:14 +0100229 rxrpc_put_call(call, rxrpc_call_put_kernel);
David Howells00e90712016-09-08 11:10:12 +0100230 }
231 rxrpc_call_completed(call);
232 rxrpc_release_call(rx, call);
233 rxrpc_put_call(call, rxrpc_call_put);
234 tail = (tail + 1) & (size - 1);
235 }
236
237 kfree(b);
238}
239
240/*
David Howells248f2192016-09-08 11:10:12 +0100241 * Allocate a new incoming call from the prealloc pool, along with a connection
242 * and a peer as necessary.
David Howells17926a72007-04-26 15:48:28 -0700243 */
David Howells248f2192016-09-08 11:10:12 +0100244static struct rxrpc_call *rxrpc_alloc_incoming_call(struct rxrpc_sock *rx,
245 struct rxrpc_local *local,
246 struct rxrpc_connection *conn,
247 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700248{
David Howells248f2192016-09-08 11:10:12 +0100249 struct rxrpc_backlog *b = rx->backlog;
250 struct rxrpc_peer *peer, *xpeer;
251 struct rxrpc_call *call;
252 unsigned short call_head, conn_head, peer_head;
253 unsigned short call_tail, conn_tail, peer_tail;
254 unsigned short call_count, conn_count;
David Howells17926a72007-04-26 15:48:28 -0700255
David Howells248f2192016-09-08 11:10:12 +0100256 /* #calls >= #conns >= #peers must hold true. */
257 call_head = smp_load_acquire(&b->call_backlog_head);
258 call_tail = b->call_backlog_tail;
259 call_count = CIRC_CNT(call_head, call_tail, RXRPC_BACKLOG_MAX);
260 conn_head = smp_load_acquire(&b->conn_backlog_head);
261 conn_tail = b->conn_backlog_tail;
262 conn_count = CIRC_CNT(conn_head, conn_tail, RXRPC_BACKLOG_MAX);
263 ASSERTCMP(conn_count, >=, call_count);
264 peer_head = smp_load_acquire(&b->peer_backlog_head);
265 peer_tail = b->peer_backlog_tail;
266 ASSERTCMP(CIRC_CNT(peer_head, peer_tail, RXRPC_BACKLOG_MAX), >=,
267 conn_count);
David Howells17926a72007-04-26 15:48:28 -0700268
David Howells248f2192016-09-08 11:10:12 +0100269 if (call_count == 0)
270 return NULL;
David Howells0d12f8a2016-03-04 15:53:46 +0000271
David Howells248f2192016-09-08 11:10:12 +0100272 if (!conn) {
273 /* No connection. We're going to need a peer to start off
274 * with. If one doesn't yet exist, use a spare from the
275 * preallocation set. We dump the address into the spare in
276 * anticipation - and to save on stack space.
277 */
278 xpeer = b->peer_backlog[peer_tail];
279 if (rxrpc_extract_addr_from_skb(&xpeer->srx, skb) < 0)
280 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700281
David Howells248f2192016-09-08 11:10:12 +0100282 peer = rxrpc_lookup_incoming_peer(local, xpeer);
283 if (peer == xpeer) {
284 b->peer_backlog[peer_tail] = NULL;
285 smp_store_release(&b->peer_backlog_tail,
286 (peer_tail + 1) &
287 (RXRPC_BACKLOG_MAX - 1));
288 }
David Howells17926a72007-04-26 15:48:28 -0700289
David Howells248f2192016-09-08 11:10:12 +0100290 /* Now allocate and set up the connection */
291 conn = b->conn_backlog[conn_tail];
292 b->conn_backlog[conn_tail] = NULL;
293 smp_store_release(&b->conn_backlog_tail,
294 (conn_tail + 1) & (RXRPC_BACKLOG_MAX - 1));
295 rxrpc_get_local(local);
296 conn->params.local = local;
297 conn->params.peer = peer;
David Howells363deea2016-09-17 10:49:14 +0100298 rxrpc_see_connection(conn);
David Howells47229742017-06-05 14:30:49 +0100299 rxrpc_new_incoming_connection(rx, conn, skb);
David Howells248f2192016-09-08 11:10:12 +0100300 } else {
301 rxrpc_get_connection(conn);
David Howells17926a72007-04-26 15:48:28 -0700302 }
303
David Howells248f2192016-09-08 11:10:12 +0100304 /* And now we can allocate and set up a new call */
305 call = b->call_backlog[call_tail];
306 b->call_backlog[call_tail] = NULL;
307 smp_store_release(&b->call_backlog_tail,
308 (call_tail + 1) & (RXRPC_BACKLOG_MAX - 1));
309
David Howellscbd00892016-09-13 09:12:34 +0100310 rxrpc_see_call(call);
David Howells248f2192016-09-08 11:10:12 +0100311 call->conn = conn;
312 call->peer = rxrpc_get_peer(conn->params.peer);
David Howellsf7aec122017-06-14 17:56:50 +0100313 call->cong_cwnd = call->peer->cong_cwnd;
David Howells248f2192016-09-08 11:10:12 +0100314 return call;
David Howells17926a72007-04-26 15:48:28 -0700315}
316
317/*
David Howells248f2192016-09-08 11:10:12 +0100318 * Set up a new incoming call. Called in BH context with the RCU read lock
319 * held.
320 *
321 * If this is for a kernel service, when we allocate the call, it will have
322 * three refs on it: (1) the kernel service, (2) the user_call_ID tree, (3) the
323 * retainer ref obtained from the backlog buffer. Prealloc calls for userspace
324 * services only have the ref from the backlog buffer. We want to pass this
325 * ref to non-BH context to dispose of.
326 *
327 * If we want to report an error, we mark the skb with the packet type and
328 * abort code and return NULL.
David Howells540b1c42017-02-27 15:43:06 +0000329 *
330 * The call is returned with the user access mutex held.
David Howells17926a72007-04-26 15:48:28 -0700331 */
David Howells248f2192016-09-08 11:10:12 +0100332struct rxrpc_call *rxrpc_new_incoming_call(struct rxrpc_local *local,
333 struct rxrpc_connection *conn,
334 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700335{
David Howells248f2192016-09-08 11:10:12 +0100336 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
337 struct rxrpc_sock *rx;
David Howells17926a72007-04-26 15:48:28 -0700338 struct rxrpc_call *call;
David Howells1e9e5c92016-09-29 22:37:15 +0100339 u16 service_id = sp->hdr.serviceId;
David Howells17926a72007-04-26 15:48:28 -0700340
341 _enter("");
342
David Howells248f2192016-09-08 11:10:12 +0100343 /* Get the socket providing the service */
David Howells1e9e5c92016-09-29 22:37:15 +0100344 rx = rcu_dereference(local->service);
David Howells28036f42017-06-05 14:30:49 +0100345 if (rx && (service_id == rx->srx.srx_service ||
346 service_id == rx->second_service))
David Howells1e9e5c92016-09-29 22:37:15 +0100347 goto found_service;
David Howells248f2192016-09-08 11:10:12 +0100348
349 trace_rxrpc_abort("INV", sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
350 RX_INVALID_OPERATION, EOPNOTSUPP);
351 skb->mark = RXRPC_SKB_MARK_LOCAL_ABORT;
352 skb->priority = RX_INVALID_OPERATION;
353 _leave(" = NULL [service]");
354 return NULL;
David Howells17926a72007-04-26 15:48:28 -0700355
356found_service:
David Howells248f2192016-09-08 11:10:12 +0100357 spin_lock(&rx->incoming_lock);
David Howells210f0352017-01-05 10:38:36 +0000358 if (rx->sk.sk_state == RXRPC_SERVER_LISTEN_DISABLED ||
359 rx->sk.sk_state == RXRPC_CLOSE) {
David Howells248f2192016-09-08 11:10:12 +0100360 trace_rxrpc_abort("CLS", sp->hdr.cid, sp->hdr.callNumber,
361 sp->hdr.seq, RX_INVALID_OPERATION, ESHUTDOWN);
362 skb->mark = RXRPC_SKB_MARK_LOCAL_ABORT;
363 skb->priority = RX_INVALID_OPERATION;
364 _leave(" = NULL [close]");
365 call = NULL;
366 goto out;
367 }
David Howells17926a72007-04-26 15:48:28 -0700368
David Howells248f2192016-09-08 11:10:12 +0100369 call = rxrpc_alloc_incoming_call(rx, local, conn, skb);
370 if (!call) {
371 skb->mark = RXRPC_SKB_MARK_BUSY;
372 _leave(" = NULL [busy]");
373 call = NULL;
374 goto out;
375 }
376
David Howells58dc63c2016-09-17 10:49:13 +0100377 trace_rxrpc_receive(call, rxrpc_receive_incoming,
378 sp->hdr.serial, sp->hdr.seq);
379
David Howells540b1c42017-02-27 15:43:06 +0000380 /* Lock the call to prevent rxrpc_kernel_send/recv_data() and
381 * sendmsg()/recvmsg() inconveniently stealing the mutex once the
382 * notification is generated.
383 *
384 * The BUG should never happen because the kernel should be well
385 * behaved enough not to access the call before the first notification
386 * event and userspace is prevented from doing so until the state is
387 * appropriate.
388 */
389 if (!mutex_trylock(&call->user_mutex))
390 BUG();
391
David Howells248f2192016-09-08 11:10:12 +0100392 /* Make the call live. */
393 rxrpc_incoming_call(rx, call, skb);
394 conn = call->conn;
395
396 if (rx->notify_new_call)
397 rx->notify_new_call(&rx->sk, call, call->user_call_ID);
David Howellse6f3afb2016-09-17 10:49:11 +0100398 else
399 sk_acceptq_added(&rx->sk);
David Howells248f2192016-09-08 11:10:12 +0100400
401 spin_lock(&conn->state_lock);
402 switch (conn->state) {
403 case RXRPC_CONN_SERVICE_UNSECURED:
404 conn->state = RXRPC_CONN_SERVICE_CHALLENGING;
405 set_bit(RXRPC_CONN_EV_CHALLENGE, &call->conn->events);
406 rxrpc_queue_conn(call->conn);
407 break;
408
409 case RXRPC_CONN_SERVICE:
410 write_lock(&call->state_lock);
411 if (rx->discard_new_call)
412 call->state = RXRPC_CALL_SERVER_RECV_REQUEST;
413 else
414 call->state = RXRPC_CALL_SERVER_ACCEPTING;
415 write_unlock(&call->state_lock);
416 break;
417
418 case RXRPC_CONN_REMOTELY_ABORTED:
419 rxrpc_set_call_completion(call, RXRPC_CALL_REMOTELY_ABORTED,
David Howells3a927892017-04-06 10:11:56 +0100420 conn->remote_abort, -ECONNABORTED);
David Howells248f2192016-09-08 11:10:12 +0100421 break;
422 case RXRPC_CONN_LOCALLY_ABORTED:
423 rxrpc_abort_call("CON", call, sp->hdr.seq,
David Howells3a927892017-04-06 10:11:56 +0100424 conn->local_abort, -ECONNABORTED);
David Howells248f2192016-09-08 11:10:12 +0100425 break;
David Howells17926a72007-04-26 15:48:28 -0700426 default:
427 BUG();
428 }
David Howells248f2192016-09-08 11:10:12 +0100429 spin_unlock(&conn->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700430
David Howells248f2192016-09-08 11:10:12 +0100431 if (call->state == RXRPC_CALL_SERVER_ACCEPTING)
432 rxrpc_notify_socket(call);
David Howells17926a72007-04-26 15:48:28 -0700433
David Howells3432a752016-09-13 09:05:14 +0100434 /* We have to discard the prealloc queue's ref here and rely on a
435 * combination of the RCU read lock and refs held either by the socket
436 * (recvmsg queue, to-be-accepted queue or user ID tree) or the kernel
437 * service to prevent the call from being deallocated too early.
438 */
439 rxrpc_put_call(call, rxrpc_call_put);
440
David Howells248f2192016-09-08 11:10:12 +0100441 _leave(" = %p{%d}", call, call->debug_id);
442out:
443 spin_unlock(&rx->incoming_lock);
444 return call;
David Howells17926a72007-04-26 15:48:28 -0700445}
446
447/*
448 * handle acceptance of a call by userspace
449 * - assign the user call ID to the call at the front of the queue
David Howells540b1c42017-02-27 15:43:06 +0000450 * - called with the socket locked.
David Howells17926a72007-04-26 15:48:28 -0700451 */
David Howells651350d2007-04-26 15:50:17 -0700452struct rxrpc_call *rxrpc_accept_call(struct rxrpc_sock *rx,
David Howellsd0016482016-08-30 20:42:14 +0100453 unsigned long user_call_ID,
454 rxrpc_notify_rx_t notify_rx)
David Howells540b1c42017-02-27 15:43:06 +0000455 __releases(&rx->sk.sk_lock.slock)
David Howells17926a72007-04-26 15:48:28 -0700456{
457 struct rxrpc_call *call;
458 struct rb_node *parent, **pp;
459 int ret;
460
461 _enter(",%lx", user_call_ID);
462
463 ASSERT(!irqs_disabled());
464
465 write_lock(&rx->call_lock);
466
David Howellsb25de362016-09-13 22:36:22 +0100467 if (list_empty(&rx->to_be_accepted)) {
468 write_unlock(&rx->call_lock);
David Howells540b1c42017-02-27 15:43:06 +0000469 release_sock(&rx->sk);
David Howellsb25de362016-09-13 22:36:22 +0100470 kleave(" = -ENODATA [empty]");
471 return ERR_PTR(-ENODATA);
472 }
David Howells17926a72007-04-26 15:48:28 -0700473
474 /* check the user ID isn't already in use */
David Howells17926a72007-04-26 15:48:28 -0700475 pp = &rx->calls.rb_node;
476 parent = NULL;
477 while (*pp) {
478 parent = *pp;
479 call = rb_entry(parent, struct rxrpc_call, sock_node);
480
481 if (user_call_ID < call->user_call_ID)
482 pp = &(*pp)->rb_left;
483 else if (user_call_ID > call->user_call_ID)
484 pp = &(*pp)->rb_right;
485 else
David Howells248f2192016-09-08 11:10:12 +0100486 goto id_in_use;
David Howells17926a72007-04-26 15:48:28 -0700487 }
488
David Howells248f2192016-09-08 11:10:12 +0100489 /* Dequeue the first call and check it's still valid. We gain
490 * responsibility for the queue's reference.
491 */
492 call = list_entry(rx->to_be_accepted.next,
493 struct rxrpc_call, accept_link);
David Howells540b1c42017-02-27 15:43:06 +0000494 write_unlock(&rx->call_lock);
495
496 /* We need to gain the mutex from the interrupt handler without
497 * upsetting lockdep, so we have to release it there and take it here.
498 * We are, however, still holding the socket lock, so other accepts
499 * must wait for us and no one can add the user ID behind our backs.
500 */
501 if (mutex_lock_interruptible(&call->user_mutex) < 0) {
502 release_sock(&rx->sk);
503 kleave(" = -ERESTARTSYS");
504 return ERR_PTR(-ERESTARTSYS);
505 }
506
507 write_lock(&rx->call_lock);
David Howells17926a72007-04-26 15:48:28 -0700508 list_del_init(&call->accept_link);
509 sk_acceptq_removed(&rx->sk);
David Howellse34d4232016-08-30 09:49:29 +0100510 rxrpc_see_call(call);
David Howells17926a72007-04-26 15:48:28 -0700511
David Howells540b1c42017-02-27 15:43:06 +0000512 /* Find the user ID insertion point. */
513 pp = &rx->calls.rb_node;
514 parent = NULL;
515 while (*pp) {
516 parent = *pp;
517 call = rb_entry(parent, struct rxrpc_call, sock_node);
518
519 if (user_call_ID < call->user_call_ID)
520 pp = &(*pp)->rb_left;
521 else if (user_call_ID > call->user_call_ID)
522 pp = &(*pp)->rb_right;
523 else
524 BUG();
525 }
526
David Howells17926a72007-04-26 15:48:28 -0700527 write_lock_bh(&call->state_lock);
528 switch (call->state) {
529 case RXRPC_CALL_SERVER_ACCEPTING:
530 call->state = RXRPC_CALL_SERVER_RECV_REQUEST;
531 break;
David Howellsf5c17aa2016-08-30 09:49:28 +0100532 case RXRPC_CALL_COMPLETE:
533 ret = call->error;
David Howells17926a72007-04-26 15:48:28 -0700534 goto out_release;
David Howells17926a72007-04-26 15:48:28 -0700535 default:
536 BUG();
537 }
538
539 /* formalise the acceptance */
David Howellsd0016482016-08-30 20:42:14 +0100540 call->notify_rx = notify_rx;
David Howells17926a72007-04-26 15:48:28 -0700541 call->user_call_ID = user_call_ID;
David Howells248f2192016-09-08 11:10:12 +0100542 rxrpc_get_call(call, rxrpc_call_got_userid);
David Howells17926a72007-04-26 15:48:28 -0700543 rb_link_node(&call->sock_node, parent, pp);
544 rb_insert_color(&call->sock_node, &rx->calls);
545 if (test_and_set_bit(RXRPC_CALL_HAS_USERID, &call->flags))
546 BUG();
David Howells17926a72007-04-26 15:48:28 -0700547
548 write_unlock_bh(&call->state_lock);
549 write_unlock(&rx->call_lock);
David Howells248f2192016-09-08 11:10:12 +0100550 rxrpc_notify_socket(call);
551 rxrpc_service_prealloc(rx, GFP_KERNEL);
David Howells540b1c42017-02-27 15:43:06 +0000552 release_sock(&rx->sk);
David Howells651350d2007-04-26 15:50:17 -0700553 _leave(" = %p{%d}", call, call->debug_id);
554 return call;
David Howells17926a72007-04-26 15:48:28 -0700555
David Howells17926a72007-04-26 15:48:28 -0700556out_release:
David Howells248f2192016-09-08 11:10:12 +0100557 _debug("release %p", call);
David Howells651350d2007-04-26 15:50:17 -0700558 write_unlock_bh(&call->state_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100559 write_unlock(&rx->call_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100560 rxrpc_release_call(rx, call);
David Howells248f2192016-09-08 11:10:12 +0100561 rxrpc_put_call(call, rxrpc_call_put);
562 goto out;
563
564id_in_use:
565 ret = -EBADSLT;
David Howells651350d2007-04-26 15:50:17 -0700566 write_unlock(&rx->call_lock);
David Howells248f2192016-09-08 11:10:12 +0100567out:
568 rxrpc_service_prealloc(rx, GFP_KERNEL);
David Howells540b1c42017-02-27 15:43:06 +0000569 release_sock(&rx->sk);
David Howells651350d2007-04-26 15:50:17 -0700570 _leave(" = %d", ret);
571 return ERR_PTR(ret);
572}
573
574/*
David Howellsb4f13422016-03-04 15:56:19 +0000575 * Handle rejection of a call by userspace
David Howells651350d2007-04-26 15:50:17 -0700576 * - reject the call at the front of the queue
577 */
578int rxrpc_reject_call(struct rxrpc_sock *rx)
579{
580 struct rxrpc_call *call;
David Howells248f2192016-09-08 11:10:12 +0100581 bool abort = false;
David Howells651350d2007-04-26 15:50:17 -0700582 int ret;
583
584 _enter("");
585
586 ASSERT(!irqs_disabled());
587
588 write_lock(&rx->call_lock);
589
David Howells248f2192016-09-08 11:10:12 +0100590 if (list_empty(&rx->to_be_accepted)) {
David Howells8d94aa32016-09-07 09:19:31 +0100591 write_unlock(&rx->call_lock);
David Howells8d94aa32016-09-07 09:19:31 +0100592 return -ENODATA;
593 }
David Howells651350d2007-04-26 15:50:17 -0700594
David Howells248f2192016-09-08 11:10:12 +0100595 /* Dequeue the first call and check it's still valid. We gain
596 * responsibility for the queue's reference.
597 */
598 call = list_entry(rx->to_be_accepted.next,
599 struct rxrpc_call, accept_link);
David Howells651350d2007-04-26 15:50:17 -0700600 list_del_init(&call->accept_link);
601 sk_acceptq_removed(&rx->sk);
David Howellse34d4232016-08-30 09:49:29 +0100602 rxrpc_see_call(call);
David Howells651350d2007-04-26 15:50:17 -0700603
604 write_lock_bh(&call->state_lock);
605 switch (call->state) {
606 case RXRPC_CALL_SERVER_ACCEPTING:
David Howells3a927892017-04-06 10:11:56 +0100607 __rxrpc_abort_call("REJ", call, 1, RX_USER_ABORT, -ECONNABORTED);
David Howells248f2192016-09-08 11:10:12 +0100608 abort = true;
609 /* fall through */
David Howellsf5c17aa2016-08-30 09:49:28 +0100610 case RXRPC_CALL_COMPLETE:
611 ret = call->error;
David Howells248f2192016-09-08 11:10:12 +0100612 goto out_discard;
David Howells651350d2007-04-26 15:50:17 -0700613 default:
614 BUG();
615 }
616
David Howells248f2192016-09-08 11:10:12 +0100617out_discard:
David Howells17926a72007-04-26 15:48:28 -0700618 write_unlock_bh(&call->state_lock);
David Howells17926a72007-04-26 15:48:28 -0700619 write_unlock(&rx->call_lock);
David Howells248f2192016-09-08 11:10:12 +0100620 if (abort) {
David Howells26cb02a2016-10-06 08:11:49 +0100621 rxrpc_send_abort_packet(call);
David Howells248f2192016-09-08 11:10:12 +0100622 rxrpc_release_call(rx, call);
623 rxrpc_put_call(call, rxrpc_call_put);
624 }
625 rxrpc_service_prealloc(rx, GFP_KERNEL);
David Howells17926a72007-04-26 15:48:28 -0700626 _leave(" = %d", ret);
627 return ret;
628}
David Howells651350d2007-04-26 15:50:17 -0700629
David Howells00e90712016-09-08 11:10:12 +0100630/*
631 * rxrpc_kernel_charge_accept - Charge up socket with preallocated calls
632 * @sock: The socket on which to preallocate
633 * @notify_rx: Event notification function for the call
634 * @user_attach_call: Func to attach call to user_call_ID
635 * @user_call_ID: The tag to attach to the preallocated call
636 * @gfp: The allocation conditions.
637 *
638 * Charge up the socket with preallocated calls, each with a user ID. A
639 * function should be provided to effect the attachment from the user's side.
640 * The user is given a ref to hold on the call.
641 *
642 * Note that the call may be come connected before this function returns.
643 */
644int rxrpc_kernel_charge_accept(struct socket *sock,
645 rxrpc_notify_rx_t notify_rx,
646 rxrpc_user_attach_call_t user_attach_call,
647 unsigned long user_call_ID, gfp_t gfp)
648{
649 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
650 struct rxrpc_backlog *b = rx->backlog;
651
652 if (sock->sk->sk_state == RXRPC_CLOSE)
653 return -ESHUTDOWN;
654
655 return rxrpc_service_prealloc_one(rx, b, notify_rx,
656 user_attach_call, user_call_ID,
657 gfp);
658}
659EXPORT_SYMBOL(rxrpc_kernel_charge_accept);