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