]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/afs/rxrpc.c
afs: Fix the maths in afs_fs_store_data()
[mirror_ubuntu-bionic-kernel.git] / fs / afs / rxrpc.c
CommitLineData
08e0e7c8
DH
1/* Maintain an RxRPC server socket to do AFS communications through
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
5a0e3ad6 12#include <linux/slab.h>
174cd4b1
IM
13#include <linux/sched/signal.h>
14
08e0e7c8
DH
15#include <net/sock.h>
16#include <net/af_rxrpc.h>
17#include <rxrpc/packet.h>
18#include "internal.h"
19#include "afs_cm.h"
20
8324f0bc 21struct socket *afs_socket; /* my RxRPC socket */
08e0e7c8 22static struct workqueue_struct *afs_async_calls;
00e90712 23static struct afs_call *afs_spare_incoming_call;
341f741f 24atomic_t afs_outstanding_calls;
08e0e7c8 25
d001648e 26static void afs_wake_up_call_waiter(struct sock *, struct rxrpc_call *, unsigned long);
08e0e7c8 27static int afs_wait_for_call_to_complete(struct afs_call *);
d001648e 28static void afs_wake_up_async_call(struct sock *, struct rxrpc_call *, unsigned long);
d001648e 29static void afs_process_async_call(struct work_struct *);
00e90712
DH
30static void afs_rx_new_call(struct sock *, struct rxrpc_call *, unsigned long);
31static void afs_rx_discard_new_call(struct rxrpc_call *, unsigned long);
d001648e 32static int afs_deliver_cm_op_id(struct afs_call *);
08e0e7c8 33
08e0e7c8
DH
34/* asynchronous incoming call initial processing */
35static const struct afs_call_type afs_RXCMxxxx = {
00d3b7a4 36 .name = "CB.xxxx",
08e0e7c8
DH
37 .deliver = afs_deliver_cm_op_id,
38 .abort_to_error = afs_abort_to_error,
39};
40
00e90712 41static void afs_charge_preallocation(struct work_struct *);
08e0e7c8 42
00e90712 43static DECLARE_WORK(afs_charge_preallocation_work, afs_charge_preallocation);
08e0e7c8 44
2f02f7ae
DH
45static int afs_wait_atomic_t(atomic_t *p)
46{
47 schedule();
48 return 0;
49}
50
08e0e7c8
DH
51/*
52 * open an RxRPC socket and bind it to be a server for callback notifications
53 * - the socket is left in blocking mode and non-blocking ops use MSG_DONTWAIT
54 */
55int afs_open_socket(void)
56{
57 struct sockaddr_rxrpc srx;
58 struct socket *socket;
59 int ret;
60
61 _enter("");
62
0e119b41 63 ret = -ENOMEM;
69ad052a 64 afs_async_calls = alloc_workqueue("kafsd", WQ_MEM_RECLAIM, 0);
0e119b41
DH
65 if (!afs_async_calls)
66 goto error_0;
08e0e7c8 67
eeb1bd5c 68 ret = sock_create_kern(&init_net, AF_RXRPC, SOCK_DGRAM, PF_INET, &socket);
0e119b41
DH
69 if (ret < 0)
70 goto error_1;
08e0e7c8
DH
71
72 socket->sk->sk_allocation = GFP_NOFS;
73
74 /* bind the callback manager's address to make this a server socket */
75 srx.srx_family = AF_RXRPC;
76 srx.srx_service = CM_SERVICE;
77 srx.transport_type = SOCK_DGRAM;
78 srx.transport_len = sizeof(srx.transport.sin);
79 srx.transport.sin.sin_family = AF_INET;
80 srx.transport.sin.sin_port = htons(AFS_CM_PORT);
81 memset(&srx.transport.sin.sin_addr, 0,
82 sizeof(srx.transport.sin.sin_addr));
83
84 ret = kernel_bind(socket, (struct sockaddr *) &srx, sizeof(srx));
0e119b41
DH
85 if (ret < 0)
86 goto error_2;
87
00e90712
DH
88 rxrpc_kernel_new_call_notification(socket, afs_rx_new_call,
89 afs_rx_discard_new_call);
d001648e 90
0e119b41
DH
91 ret = kernel_listen(socket, INT_MAX);
92 if (ret < 0)
93 goto error_2;
08e0e7c8 94
08e0e7c8 95 afs_socket = socket;
00e90712 96 afs_charge_preallocation(NULL);
08e0e7c8
DH
97 _leave(" = 0");
98 return 0;
0e119b41
DH
99
100error_2:
101 sock_release(socket);
102error_1:
103 destroy_workqueue(afs_async_calls);
104error_0:
105 _leave(" = %d", ret);
106 return ret;
08e0e7c8
DH
107}
108
109/*
110 * close the RxRPC socket AFS was using
111 */
112void afs_close_socket(void)
113{
114 _enter("");
115
341f741f
DH
116 kernel_listen(afs_socket, 0);
117 flush_workqueue(afs_async_calls);
118
00e90712 119 if (afs_spare_incoming_call) {
341f741f 120 afs_put_call(afs_spare_incoming_call);
00e90712
DH
121 afs_spare_incoming_call = NULL;
122 }
123
d001648e 124 _debug("outstanding %u", atomic_read(&afs_outstanding_calls));
2f02f7ae
DH
125 wait_on_atomic_t(&afs_outstanding_calls, afs_wait_atomic_t,
126 TASK_UNINTERRUPTIBLE);
127 _debug("no outstanding calls");
128
248f219c 129 kernel_sock_shutdown(afs_socket, SHUT_RDWR);
d001648e 130 flush_workqueue(afs_async_calls);
08e0e7c8
DH
131 sock_release(afs_socket);
132
133 _debug("dework");
134 destroy_workqueue(afs_async_calls);
135 _leave("");
136}
137
00d3b7a4 138/*
341f741f 139 * Allocate a call.
00d3b7a4 140 */
341f741f
DH
141static struct afs_call *afs_alloc_call(const struct afs_call_type *type,
142 gfp_t gfp)
00d3b7a4 143{
341f741f
DH
144 struct afs_call *call;
145 int o;
00d3b7a4 146
341f741f
DH
147 call = kzalloc(sizeof(*call), gfp);
148 if (!call)
149 return NULL;
00d3b7a4 150
341f741f
DH
151 call->type = type;
152 atomic_set(&call->usage, 1);
153 INIT_WORK(&call->async_work, afs_process_async_call);
154 init_waitqueue_head(&call->waitq);
2f02f7ae 155
341f741f
DH
156 o = atomic_inc_return(&afs_outstanding_calls);
157 trace_afs_call(call, afs_call_trace_alloc, 1, o,
158 __builtin_return_address(0));
159 return call;
00d3b7a4
DH
160}
161
6c67c7c3 162/*
341f741f 163 * Dispose of a reference on a call.
6c67c7c3 164 */
341f741f 165void afs_put_call(struct afs_call *call)
6c67c7c3 166{
341f741f
DH
167 int n = atomic_dec_return(&call->usage);
168 int o = atomic_read(&afs_outstanding_calls);
169
170 trace_afs_call(call, afs_call_trace_put, n + 1, o,
171 __builtin_return_address(0));
172
173 ASSERTCMP(n, >=, 0);
174 if (n == 0) {
175 ASSERT(!work_pending(&call->async_work));
176 ASSERT(call->type->name != NULL);
177
178 if (call->rxcall) {
179 rxrpc_kernel_end_call(afs_socket, call->rxcall);
180 call->rxcall = NULL;
181 }
182 if (call->type->destructor)
183 call->type->destructor(call);
184
185 kfree(call->request);
186 kfree(call);
187
188 o = atomic_dec_return(&afs_outstanding_calls);
189 trace_afs_call(call, afs_call_trace_free, 0, o,
190 __builtin_return_address(0));
191 if (o == 0)
192 wake_up_atomic_t(&afs_outstanding_calls);
6c67c7c3 193 }
6cf12869
NWF
194}
195
196/*
341f741f 197 * Queue the call for actual work. Returns 0 unconditionally for convenience.
6cf12869 198 */
341f741f 199int afs_queue_call_work(struct afs_call *call)
6cf12869 200{
341f741f
DH
201 int u = atomic_inc_return(&call->usage);
202
203 trace_afs_call(call, afs_call_trace_work, u,
204 atomic_read(&afs_outstanding_calls),
205 __builtin_return_address(0));
206
207 INIT_WORK(&call->work, call->type->work);
208
209 if (!queue_work(afs_wq, &call->work))
210 afs_put_call(call);
211 return 0;
6c67c7c3
DH
212}
213
08e0e7c8
DH
214/*
215 * allocate a call with flat request and reply buffers
216 */
217struct afs_call *afs_alloc_flat_call(const struct afs_call_type *type,
d001648e 218 size_t request_size, size_t reply_max)
08e0e7c8
DH
219{
220 struct afs_call *call;
221
341f741f 222 call = afs_alloc_call(type, GFP_NOFS);
08e0e7c8
DH
223 if (!call)
224 goto nomem_call;
225
226 if (request_size) {
341f741f 227 call->request_size = request_size;
08e0e7c8
DH
228 call->request = kmalloc(request_size, GFP_NOFS);
229 if (!call->request)
00d3b7a4 230 goto nomem_free;
08e0e7c8
DH
231 }
232
d001648e 233 if (reply_max) {
341f741f 234 call->reply_max = reply_max;
d001648e 235 call->buffer = kmalloc(reply_max, GFP_NOFS);
08e0e7c8 236 if (!call->buffer)
00d3b7a4 237 goto nomem_free;
08e0e7c8
DH
238 }
239
08e0e7c8 240 init_waitqueue_head(&call->waitq);
08e0e7c8
DH
241 return call;
242
00d3b7a4 243nomem_free:
341f741f 244 afs_put_call(call);
08e0e7c8
DH
245nomem_call:
246 return NULL;
247}
248
249/*
250 * clean up a call with flat buffer
251 */
252void afs_flat_call_destructor(struct afs_call *call)
253{
254 _enter("");
255
256 kfree(call->request);
257 call->request = NULL;
258 kfree(call->buffer);
259 call->buffer = NULL;
260}
261
2f5705a5
DH
262#define AFS_BVEC_MAX 8
263
264/*
265 * Load the given bvec with the next few pages.
266 */
267static void afs_load_bvec(struct afs_call *call, struct msghdr *msg,
268 struct bio_vec *bv, pgoff_t first, pgoff_t last,
269 unsigned offset)
270{
271 struct page *pages[AFS_BVEC_MAX];
272 unsigned int nr, n, i, to, bytes = 0;
273
274 nr = min_t(pgoff_t, last - first + 1, AFS_BVEC_MAX);
275 n = find_get_pages_contig(call->mapping, first, nr, pages);
276 ASSERTCMP(n, ==, nr);
277
278 msg->msg_flags |= MSG_MORE;
279 for (i = 0; i < nr; i++) {
280 to = PAGE_SIZE;
281 if (first + i >= last) {
282 to = call->last_to;
283 msg->msg_flags &= ~MSG_MORE;
284 }
285 bv[i].bv_page = pages[i];
286 bv[i].bv_len = to - offset;
287 bv[i].bv_offset = offset;
288 bytes += to - offset;
289 offset = 0;
290 }
291
292 iov_iter_bvec(&msg->msg_iter, WRITE | ITER_BVEC, bv, nr, bytes);
293}
294
31143d5d
DH
295/*
296 * attach the data from a bunch of pages on an inode to a call
297 */
39c6acea 298static int afs_send_pages(struct afs_call *call, struct msghdr *msg)
31143d5d 299{
2f5705a5
DH
300 struct bio_vec bv[AFS_BVEC_MAX];
301 unsigned int bytes, nr, loop, offset;
31143d5d
DH
302 pgoff_t first = call->first, last = call->last;
303 int ret;
304
31143d5d
DH
305 offset = call->first_offset;
306 call->first_offset = 0;
307
308 do {
2f5705a5
DH
309 afs_load_bvec(call, msg, bv, first, last, offset);
310 offset = 0;
311 bytes = msg->msg_iter.count;
312 nr = msg->msg_iter.nr_segs;
313
314 /* Have to change the state *before* sending the last
315 * packet as RxRPC might give us the reply before it
316 * returns from sending the request.
317 */
318 if (first + nr >= last)
319 call->state = AFS_CALL_AWAIT_REPLY;
320 ret = rxrpc_kernel_send_data(afs_socket, call->rxcall,
321 msg, bytes);
322 for (loop = 0; loop < nr; loop++)
323 put_page(bv[loop].bv_page);
31143d5d
DH
324 if (ret < 0)
325 break;
2f5705a5
DH
326
327 first += nr;
5bbf5d39 328 } while (first <= last);
31143d5d 329
31143d5d
DH
330 return ret;
331}
332
08e0e7c8
DH
333/*
334 * initiate a call
335 */
336int afs_make_call(struct in_addr *addr, struct afs_call *call, gfp_t gfp,
56ff9c83 337 bool async)
08e0e7c8
DH
338{
339 struct sockaddr_rxrpc srx;
340 struct rxrpc_call *rxcall;
341 struct msghdr msg;
342 struct kvec iov[1];
343 int ret;
344
345 _enter("%x,{%d},", addr->s_addr, ntohs(call->port));
346
00d3b7a4
DH
347 ASSERT(call->type != NULL);
348 ASSERT(call->type->name != NULL);
349
31143d5d
DH
350 _debug("____MAKE %p{%s,%x} [%d]____",
351 call, call->type->name, key_serial(call->key),
352 atomic_read(&afs_outstanding_calls));
00d3b7a4 353
56ff9c83 354 call->async = async;
08e0e7c8
DH
355
356 memset(&srx, 0, sizeof(srx));
357 srx.srx_family = AF_RXRPC;
358 srx.srx_service = call->service_id;
359 srx.transport_type = SOCK_DGRAM;
360 srx.transport_len = sizeof(srx.transport.sin);
361 srx.transport.sin.sin_family = AF_INET;
362 srx.transport.sin.sin_port = call->port;
363 memcpy(&srx.transport.sin.sin_addr, addr, 4);
364
365 /* create a call */
366 rxcall = rxrpc_kernel_begin_call(afs_socket, &srx, call->key,
d001648e 367 (unsigned long) call, gfp,
56ff9c83
DH
368 (async ?
369 afs_wake_up_async_call :
370 afs_wake_up_call_waiter));
00d3b7a4 371 call->key = NULL;
08e0e7c8
DH
372 if (IS_ERR(rxcall)) {
373 ret = PTR_ERR(rxcall);
374 goto error_kill_call;
375 }
376
377 call->rxcall = rxcall;
378
379 /* send the request */
380 iov[0].iov_base = call->request;
381 iov[0].iov_len = call->request_size;
382
383 msg.msg_name = NULL;
384 msg.msg_namelen = 0;
2e90b1c4 385 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1,
c0371da6 386 call->request_size);
08e0e7c8
DH
387 msg.msg_control = NULL;
388 msg.msg_controllen = 0;
31143d5d 389 msg.msg_flags = (call->send_pages ? MSG_MORE : 0);
08e0e7c8
DH
390
391 /* have to change the state *before* sending the last packet as RxRPC
392 * might give us the reply before it returns from sending the
393 * request */
31143d5d
DH
394 if (!call->send_pages)
395 call->state = AFS_CALL_AWAIT_REPLY;
4de48af6
DH
396 ret = rxrpc_kernel_send_data(afs_socket, rxcall,
397 &msg, call->request_size);
08e0e7c8
DH
398 if (ret < 0)
399 goto error_do_abort;
400
31143d5d 401 if (call->send_pages) {
39c6acea 402 ret = afs_send_pages(call, &msg);
31143d5d
DH
403 if (ret < 0)
404 goto error_do_abort;
405 }
406
08e0e7c8
DH
407 /* at this point, an async call may no longer exist as it may have
408 * already completed */
56ff9c83
DH
409 if (call->async)
410 return -EINPROGRESS;
411
412 return afs_wait_for_call_to_complete(call);
08e0e7c8
DH
413
414error_do_abort:
5a42976d 415 rxrpc_kernel_abort_call(afs_socket, rxcall, RX_USER_ABORT, -ret, "KSD");
08e0e7c8 416error_kill_call:
341f741f 417 afs_put_call(call);
08e0e7c8
DH
418 _leave(" = %d", ret);
419 return ret;
420}
421
08e0e7c8
DH
422/*
423 * deliver messages to a call
424 */
425static void afs_deliver_to_call(struct afs_call *call)
426{
08e0e7c8
DH
427 u32 abort_code;
428 int ret;
429
d001648e
DH
430 _enter("%s", call->type->name);
431
432 while (call->state == AFS_CALL_AWAIT_REPLY ||
433 call->state == AFS_CALL_AWAIT_OP_ID ||
434 call->state == AFS_CALL_AWAIT_REQUEST ||
435 call->state == AFS_CALL_AWAIT_ACK
436 ) {
437 if (call->state == AFS_CALL_AWAIT_ACK) {
438 size_t offset = 0;
439 ret = rxrpc_kernel_recv_data(afs_socket, call->rxcall,
440 NULL, 0, &offset, false,
441 &call->abort_code);
8e8d7f13
DH
442 trace_afs_recv_data(call, 0, offset, false, ret);
443
d001648e
DH
444 if (ret == -EINPROGRESS || ret == -EAGAIN)
445 return;
9008f998 446 if (ret == 1 || ret < 0) {
d001648e
DH
447 call->state = AFS_CALL_COMPLETE;
448 goto done;
08e0e7c8 449 }
d001648e 450 return;
08e0e7c8
DH
451 }
452
d001648e
DH
453 ret = call->type->deliver(call);
454 switch (ret) {
455 case 0:
456 if (call->state == AFS_CALL_AWAIT_REPLY)
457 call->state = AFS_CALL_COMPLETE;
458 goto done;
459 case -EINPROGRESS:
460 case -EAGAIN:
461 goto out;
462 case -ENOTCONN:
463 abort_code = RX_CALL_DEAD;
464 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 465 abort_code, -ret, "KNC");
d001648e
DH
466 goto do_abort;
467 case -ENOTSUPP:
468 abort_code = RX_INVALID_OPERATION;
469 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 470 abort_code, -ret, "KIV");
d001648e
DH
471 goto do_abort;
472 case -ENODATA:
473 case -EBADMSG:
474 case -EMSGSIZE:
475 default:
476 abort_code = RXGEN_CC_UNMARSHAL;
477 if (call->state != AFS_CALL_AWAIT_REPLY)
478 abort_code = RXGEN_SS_UNMARSHAL;
479 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 480 abort_code, EBADMSG, "KUM");
d001648e
DH
481 goto do_abort;
482 }
08e0e7c8
DH
483 }
484
d001648e
DH
485done:
486 if (call->state == AFS_CALL_COMPLETE && call->incoming)
341f741f 487 afs_put_call(call);
d001648e 488out:
08e0e7c8 489 _leave("");
d001648e
DH
490 return;
491
492do_abort:
493 call->error = ret;
494 call->state = AFS_CALL_COMPLETE;
495 goto done;
08e0e7c8
DH
496}
497
498/*
499 * wait synchronously for a call to complete
500 */
501static int afs_wait_for_call_to_complete(struct afs_call *call)
502{
5a42976d 503 const char *abort_why;
08e0e7c8
DH
504 int ret;
505
506 DECLARE_WAITQUEUE(myself, current);
507
508 _enter("");
509
510 add_wait_queue(&call->waitq, &myself);
511 for (;;) {
512 set_current_state(TASK_INTERRUPTIBLE);
513
514 /* deliver any messages that are in the queue */
d001648e
DH
515 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
516 call->need_attention = false;
08e0e7c8
DH
517 __set_current_state(TASK_RUNNING);
518 afs_deliver_to_call(call);
519 continue;
520 }
521
5a42976d 522 abort_why = "KWC";
08e0e7c8 523 ret = call->error;
d001648e 524 if (call->state == AFS_CALL_COMPLETE)
08e0e7c8 525 break;
5a42976d 526 abort_why = "KWI";
08e0e7c8
DH
527 ret = -EINTR;
528 if (signal_pending(current))
529 break;
530 schedule();
531 }
532
533 remove_wait_queue(&call->waitq, &myself);
534 __set_current_state(TASK_RUNNING);
535
536 /* kill the call */
537 if (call->state < AFS_CALL_COMPLETE) {
538 _debug("call incomplete");
d001648e 539 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 540 RX_CALL_DEAD, -ret, abort_why);
08e0e7c8
DH
541 }
542
543 _debug("call complete");
341f741f 544 afs_put_call(call);
08e0e7c8
DH
545 _leave(" = %d", ret);
546 return ret;
547}
548
549/*
550 * wake up a waiting call
551 */
d001648e
DH
552static void afs_wake_up_call_waiter(struct sock *sk, struct rxrpc_call *rxcall,
553 unsigned long call_user_ID)
08e0e7c8 554{
d001648e
DH
555 struct afs_call *call = (struct afs_call *)call_user_ID;
556
557 call->need_attention = true;
08e0e7c8
DH
558 wake_up(&call->waitq);
559}
560
561/*
562 * wake up an asynchronous call
563 */
d001648e
DH
564static void afs_wake_up_async_call(struct sock *sk, struct rxrpc_call *rxcall,
565 unsigned long call_user_ID)
08e0e7c8 566{
d001648e 567 struct afs_call *call = (struct afs_call *)call_user_ID;
341f741f 568 int u;
d001648e 569
8e8d7f13 570 trace_afs_notify_call(rxcall, call);
d001648e 571 call->need_attention = true;
341f741f
DH
572
573 u = __atomic_add_unless(&call->usage, 1, 0);
574 if (u != 0) {
575 trace_afs_call(call, afs_call_trace_wake, u,
576 atomic_read(&afs_outstanding_calls),
577 __builtin_return_address(0));
578
579 if (!queue_work(afs_async_calls, &call->async_work))
580 afs_put_call(call);
581 }
08e0e7c8
DH
582}
583
08e0e7c8 584/*
341f741f
DH
585 * Delete an asynchronous call. The work item carries a ref to the call struct
586 * that we need to release.
08e0e7c8 587 */
d001648e 588static void afs_delete_async_call(struct work_struct *work)
08e0e7c8 589{
d001648e
DH
590 struct afs_call *call = container_of(work, struct afs_call, async_work);
591
08e0e7c8
DH
592 _enter("");
593
341f741f 594 afs_put_call(call);
08e0e7c8
DH
595
596 _leave("");
597}
598
599/*
341f741f
DH
600 * Perform I/O processing on an asynchronous call. The work item carries a ref
601 * to the call struct that we either need to release or to pass on.
08e0e7c8 602 */
d001648e 603static void afs_process_async_call(struct work_struct *work)
08e0e7c8 604{
d001648e
DH
605 struct afs_call *call = container_of(work, struct afs_call, async_work);
606
08e0e7c8
DH
607 _enter("");
608
d001648e
DH
609 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
610 call->need_attention = false;
08e0e7c8 611 afs_deliver_to_call(call);
d001648e 612 }
08e0e7c8 613
56ff9c83 614 if (call->state == AFS_CALL_COMPLETE) {
08e0e7c8
DH
615 call->reply = NULL;
616
341f741f
DH
617 /* We have two refs to release - one from the alloc and one
618 * queued with the work item - and we can't just deallocate the
619 * call because the work item may be queued again.
620 */
d001648e 621 call->async_work.func = afs_delete_async_call;
341f741f
DH
622 if (!queue_work(afs_async_calls, &call->async_work))
623 afs_put_call(call);
08e0e7c8
DH
624 }
625
341f741f 626 afs_put_call(call);
08e0e7c8
DH
627 _leave("");
628}
629
00e90712
DH
630static void afs_rx_attach(struct rxrpc_call *rxcall, unsigned long user_call_ID)
631{
632 struct afs_call *call = (struct afs_call *)user_call_ID;
633
634 call->rxcall = rxcall;
635}
636
637/*
638 * Charge the incoming call preallocation.
639 */
640static void afs_charge_preallocation(struct work_struct *work)
641{
642 struct afs_call *call = afs_spare_incoming_call;
643
644 for (;;) {
645 if (!call) {
341f741f 646 call = afs_alloc_call(&afs_RXCMxxxx, GFP_KERNEL);
00e90712
DH
647 if (!call)
648 break;
649
56ff9c83 650 call->async = true;
00e90712 651 call->state = AFS_CALL_AWAIT_OP_ID;
56ff9c83 652 init_waitqueue_head(&call->waitq);
00e90712
DH
653 }
654
655 if (rxrpc_kernel_charge_accept(afs_socket,
656 afs_wake_up_async_call,
657 afs_rx_attach,
658 (unsigned long)call,
659 GFP_KERNEL) < 0)
660 break;
661 call = NULL;
662 }
663 afs_spare_incoming_call = call;
664}
665
666/*
667 * Discard a preallocated call when a socket is shut down.
668 */
669static void afs_rx_discard_new_call(struct rxrpc_call *rxcall,
670 unsigned long user_call_ID)
671{
672 struct afs_call *call = (struct afs_call *)user_call_ID;
673
00e90712 674 call->rxcall = NULL;
341f741f 675 afs_put_call(call);
00e90712
DH
676}
677
d001648e
DH
678/*
679 * Notification of an incoming call.
680 */
00e90712
DH
681static void afs_rx_new_call(struct sock *sk, struct rxrpc_call *rxcall,
682 unsigned long user_call_ID)
d001648e 683{
00e90712 684 queue_work(afs_wq, &afs_charge_preallocation_work);
d001648e
DH
685}
686
08e0e7c8 687/*
372ee163
DH
688 * Grab the operation ID from an incoming cache manager call. The socket
689 * buffer is discarded on error or if we don't yet have sufficient data.
08e0e7c8 690 */
d001648e 691static int afs_deliver_cm_op_id(struct afs_call *call)
08e0e7c8 692{
d001648e 693 int ret;
08e0e7c8 694
d001648e 695 _enter("{%zu}", call->offset);
08e0e7c8
DH
696
697 ASSERTCMP(call->offset, <, 4);
698
699 /* the operation ID forms the first four bytes of the request data */
50a2c953 700 ret = afs_extract_data(call, &call->tmp, 4, true);
d001648e
DH
701 if (ret < 0)
702 return ret;
08e0e7c8 703
50a2c953 704 call->operation_ID = ntohl(call->tmp);
08e0e7c8 705 call->state = AFS_CALL_AWAIT_REQUEST;
d001648e 706 call->offset = 0;
08e0e7c8
DH
707
708 /* ask the cache manager to route the call (it'll change the call type
709 * if successful) */
710 if (!afs_cm_incoming_call(call))
711 return -ENOTSUPP;
712
8e8d7f13
DH
713 trace_afs_cb_call(call);
714
08e0e7c8
DH
715 /* pass responsibility for the remainer of this message off to the
716 * cache manager op */
d001648e 717 return call->type->deliver(call);
08e0e7c8
DH
718}
719
720/*
721 * send an empty reply
722 */
723void afs_send_empty_reply(struct afs_call *call)
724{
725 struct msghdr msg;
08e0e7c8
DH
726
727 _enter("");
728
08e0e7c8
DH
729 msg.msg_name = NULL;
730 msg.msg_namelen = 0;
bfd4e956 731 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, NULL, 0, 0);
08e0e7c8
DH
732 msg.msg_control = NULL;
733 msg.msg_controllen = 0;
734 msg.msg_flags = 0;
735
736 call->state = AFS_CALL_AWAIT_ACK;
4de48af6 737 switch (rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, 0)) {
08e0e7c8
DH
738 case 0:
739 _leave(" [replied]");
740 return;
741
742 case -ENOMEM:
743 _debug("oom");
4de48af6 744 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 745 RX_USER_ABORT, ENOMEM, "KOO");
08e0e7c8 746 default:
08e0e7c8
DH
747 _leave(" [error]");
748 return;
749 }
750}
751
b908fe6b
DH
752/*
753 * send a simple reply
754 */
755void afs_send_simple_reply(struct afs_call *call, const void *buf, size_t len)
756{
757 struct msghdr msg;
2e90b1c4 758 struct kvec iov[1];
bd6dc742 759 int n;
b908fe6b
DH
760
761 _enter("");
762
763 iov[0].iov_base = (void *) buf;
764 iov[0].iov_len = len;
765 msg.msg_name = NULL;
766 msg.msg_namelen = 0;
2e90b1c4 767 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1, len);
b908fe6b
DH
768 msg.msg_control = NULL;
769 msg.msg_controllen = 0;
770 msg.msg_flags = 0;
771
772 call->state = AFS_CALL_AWAIT_ACK;
4de48af6 773 n = rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, len);
bd6dc742 774 if (n >= 0) {
6c67c7c3 775 /* Success */
b908fe6b
DH
776 _leave(" [replied]");
777 return;
bd6dc742 778 }
6c67c7c3 779
bd6dc742 780 if (n == -ENOMEM) {
b908fe6b 781 _debug("oom");
4de48af6 782 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
5a42976d 783 RX_USER_ABORT, ENOMEM, "KOO");
b908fe6b 784 }
bd6dc742 785 _leave(" [error]");
b908fe6b
DH
786}
787
08e0e7c8 788/*
372ee163 789 * Extract a piece of data from the received data socket buffers.
08e0e7c8 790 */
d001648e
DH
791int afs_extract_data(struct afs_call *call, void *buf, size_t count,
792 bool want_more)
08e0e7c8 793{
d001648e 794 int ret;
08e0e7c8 795
d001648e
DH
796 _enter("{%s,%zu},,%zu,%d",
797 call->type->name, call->offset, count, want_more);
08e0e7c8 798
d001648e 799 ASSERTCMP(call->offset, <=, count);
08e0e7c8 800
d001648e
DH
801 ret = rxrpc_kernel_recv_data(afs_socket, call->rxcall,
802 buf, count, &call->offset,
803 want_more, &call->abort_code);
8e8d7f13 804 trace_afs_recv_data(call, count, call->offset, want_more, ret);
d001648e
DH
805 if (ret == 0 || ret == -EAGAIN)
806 return ret;
08e0e7c8 807
d001648e
DH
808 if (ret == 1) {
809 switch (call->state) {
810 case AFS_CALL_AWAIT_REPLY:
811 call->state = AFS_CALL_COMPLETE;
812 break;
813 case AFS_CALL_AWAIT_REQUEST:
814 call->state = AFS_CALL_REPLYING;
815 break;
816 default:
817 break;
818 }
819 return 0;
08e0e7c8 820 }
d001648e
DH
821
822 if (ret == -ECONNABORTED)
823 call->error = call->type->abort_to_error(call->abort_code);
824 else
825 call->error = ret;
826 call->state = AFS_CALL_COMPLETE;
827 return ret;
08e0e7c8 828}