]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/afs/rxrpc.c
Merge tag 'drm-misc-fixes-2017-07-20' of git://anongit.freedesktop.org/git/drm-misc...
[mirror_ubuntu-artful-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 */
445783d0 318 if (first + nr - 1 >= last)
2f5705a5
DH
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];
70af0e3b 343 size_t offset;
e754eba6 344 s64 tx_total_len;
70af0e3b 345 u32 abort_code;
08e0e7c8
DH
346 int ret;
347
348 _enter("%x,{%d},", addr->s_addr, ntohs(call->port));
349
00d3b7a4
DH
350 ASSERT(call->type != NULL);
351 ASSERT(call->type->name != NULL);
352
31143d5d
DH
353 _debug("____MAKE %p{%s,%x} [%d]____",
354 call, call->type->name, key_serial(call->key),
355 atomic_read(&afs_outstanding_calls));
00d3b7a4 356
56ff9c83 357 call->async = async;
08e0e7c8
DH
358
359 memset(&srx, 0, sizeof(srx));
360 srx.srx_family = AF_RXRPC;
361 srx.srx_service = call->service_id;
362 srx.transport_type = SOCK_DGRAM;
363 srx.transport_len = sizeof(srx.transport.sin);
364 srx.transport.sin.sin_family = AF_INET;
365 srx.transport.sin.sin_port = call->port;
366 memcpy(&srx.transport.sin.sin_addr, addr, 4);
367
e754eba6
DH
368 /* Work out the length we're going to transmit. This is awkward for
369 * calls such as FS.StoreData where there's an extra injection of data
370 * after the initial fixed part.
371 */
372 tx_total_len = call->request_size;
373 if (call->send_pages) {
374 tx_total_len += call->last_to - call->first_offset;
375 tx_total_len += (call->last - call->first) * PAGE_SIZE;
376 }
377
08e0e7c8
DH
378 /* create a call */
379 rxcall = rxrpc_kernel_begin_call(afs_socket, &srx, call->key,
e754eba6
DH
380 (unsigned long)call,
381 tx_total_len, gfp,
56ff9c83
DH
382 (async ?
383 afs_wake_up_async_call :
384 afs_wake_up_call_waiter));
00d3b7a4 385 call->key = NULL;
08e0e7c8
DH
386 if (IS_ERR(rxcall)) {
387 ret = PTR_ERR(rxcall);
388 goto error_kill_call;
389 }
390
391 call->rxcall = rxcall;
392
393 /* send the request */
394 iov[0].iov_base = call->request;
395 iov[0].iov_len = call->request_size;
396
397 msg.msg_name = NULL;
398 msg.msg_namelen = 0;
2e90b1c4 399 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1,
c0371da6 400 call->request_size);
08e0e7c8
DH
401 msg.msg_control = NULL;
402 msg.msg_controllen = 0;
31143d5d 403 msg.msg_flags = (call->send_pages ? MSG_MORE : 0);
08e0e7c8 404
70af0e3b
DH
405 /* We have to change the state *before* sending the last packet as
406 * rxrpc might give us the reply before it returns from sending the
407 * request. Further, if the send fails, we may already have been given
408 * a notification and may have collected it.
409 */
31143d5d
DH
410 if (!call->send_pages)
411 call->state = AFS_CALL_AWAIT_REPLY;
4de48af6
DH
412 ret = rxrpc_kernel_send_data(afs_socket, rxcall,
413 &msg, call->request_size);
08e0e7c8
DH
414 if (ret < 0)
415 goto error_do_abort;
416
31143d5d 417 if (call->send_pages) {
39c6acea 418 ret = afs_send_pages(call, &msg);
31143d5d
DH
419 if (ret < 0)
420 goto error_do_abort;
421 }
422
08e0e7c8
DH
423 /* at this point, an async call may no longer exist as it may have
424 * already completed */
56ff9c83
DH
425 if (call->async)
426 return -EINPROGRESS;
427
428 return afs_wait_for_call_to_complete(call);
08e0e7c8
DH
429
430error_do_abort:
70af0e3b
DH
431 call->state = AFS_CALL_COMPLETE;
432 if (ret != -ECONNABORTED) {
433 rxrpc_kernel_abort_call(afs_socket, rxcall, RX_USER_ABORT,
3a92789a 434 ret, "KSD");
70af0e3b
DH
435 } else {
436 abort_code = 0;
437 offset = 0;
438 rxrpc_kernel_recv_data(afs_socket, rxcall, NULL, 0, &offset,
439 false, &abort_code);
440 ret = call->type->abort_to_error(abort_code);
441 }
08e0e7c8 442error_kill_call:
341f741f 443 afs_put_call(call);
08e0e7c8
DH
444 _leave(" = %d", ret);
445 return ret;
446}
447
08e0e7c8
DH
448/*
449 * deliver messages to a call
450 */
451static void afs_deliver_to_call(struct afs_call *call)
452{
08e0e7c8
DH
453 u32 abort_code;
454 int ret;
455
d001648e
DH
456 _enter("%s", call->type->name);
457
458 while (call->state == AFS_CALL_AWAIT_REPLY ||
459 call->state == AFS_CALL_AWAIT_OP_ID ||
460 call->state == AFS_CALL_AWAIT_REQUEST ||
461 call->state == AFS_CALL_AWAIT_ACK
462 ) {
463 if (call->state == AFS_CALL_AWAIT_ACK) {
464 size_t offset = 0;
465 ret = rxrpc_kernel_recv_data(afs_socket, call->rxcall,
466 NULL, 0, &offset, false,
467 &call->abort_code);
8e8d7f13
DH
468 trace_afs_recv_data(call, 0, offset, false, ret);
469
d001648e
DH
470 if (ret == -EINPROGRESS || ret == -EAGAIN)
471 return;
9008f998 472 if (ret == 1 || ret < 0) {
d001648e
DH
473 call->state = AFS_CALL_COMPLETE;
474 goto done;
08e0e7c8 475 }
d001648e 476 return;
08e0e7c8
DH
477 }
478
d001648e
DH
479 ret = call->type->deliver(call);
480 switch (ret) {
481 case 0:
482 if (call->state == AFS_CALL_AWAIT_REPLY)
483 call->state = AFS_CALL_COMPLETE;
484 goto done;
485 case -EINPROGRESS:
486 case -EAGAIN:
487 goto out;
70af0e3b
DH
488 case -ECONNABORTED:
489 goto call_complete;
d001648e
DH
490 case -ENOTCONN:
491 abort_code = RX_CALL_DEAD;
492 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
3a92789a 493 abort_code, ret, "KNC");
70af0e3b 494 goto save_error;
d001648e 495 case -ENOTSUPP:
1157f153 496 abort_code = RXGEN_OPCODE;
d001648e 497 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
3a92789a 498 abort_code, ret, "KIV");
70af0e3b 499 goto save_error;
d001648e
DH
500 case -ENODATA:
501 case -EBADMSG:
502 case -EMSGSIZE:
503 default:
504 abort_code = RXGEN_CC_UNMARSHAL;
505 if (call->state != AFS_CALL_AWAIT_REPLY)
506 abort_code = RXGEN_SS_UNMARSHAL;
507 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
3a92789a 508 abort_code, -EBADMSG, "KUM");
70af0e3b 509 goto save_error;
d001648e 510 }
08e0e7c8
DH
511 }
512
d001648e
DH
513done:
514 if (call->state == AFS_CALL_COMPLETE && call->incoming)
341f741f 515 afs_put_call(call);
d001648e 516out:
08e0e7c8 517 _leave("");
d001648e
DH
518 return;
519
70af0e3b 520save_error:
d001648e 521 call->error = ret;
70af0e3b 522call_complete:
d001648e
DH
523 call->state = AFS_CALL_COMPLETE;
524 goto done;
08e0e7c8
DH
525}
526
527/*
528 * wait synchronously for a call to complete
529 */
530static int afs_wait_for_call_to_complete(struct afs_call *call)
531{
08e0e7c8
DH
532 int ret;
533
534 DECLARE_WAITQUEUE(myself, current);
535
536 _enter("");
537
538 add_wait_queue(&call->waitq, &myself);
539 for (;;) {
540 set_current_state(TASK_INTERRUPTIBLE);
541
542 /* deliver any messages that are in the queue */
d001648e
DH
543 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
544 call->need_attention = false;
08e0e7c8
DH
545 __set_current_state(TASK_RUNNING);
546 afs_deliver_to_call(call);
547 continue;
548 }
549
954cd6dc
DH
550 if (call->state == AFS_CALL_COMPLETE ||
551 signal_pending(current))
08e0e7c8
DH
552 break;
553 schedule();
554 }
555
556 remove_wait_queue(&call->waitq, &myself);
557 __set_current_state(TASK_RUNNING);
558
954cd6dc 559 /* Kill off the call if it's still live. */
08e0e7c8 560 if (call->state < AFS_CALL_COMPLETE) {
954cd6dc 561 _debug("call interrupted");
d001648e 562 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
954cd6dc 563 RX_USER_ABORT, -EINTR, "KWI");
08e0e7c8
DH
564 }
565
954cd6dc 566 ret = call->error;
08e0e7c8 567 _debug("call complete");
341f741f 568 afs_put_call(call);
08e0e7c8
DH
569 _leave(" = %d", ret);
570 return ret;
571}
572
573/*
574 * wake up a waiting call
575 */
d001648e
DH
576static void afs_wake_up_call_waiter(struct sock *sk, struct rxrpc_call *rxcall,
577 unsigned long call_user_ID)
08e0e7c8 578{
d001648e
DH
579 struct afs_call *call = (struct afs_call *)call_user_ID;
580
581 call->need_attention = true;
08e0e7c8
DH
582 wake_up(&call->waitq);
583}
584
585/*
586 * wake up an asynchronous call
587 */
d001648e
DH
588static void afs_wake_up_async_call(struct sock *sk, struct rxrpc_call *rxcall,
589 unsigned long call_user_ID)
08e0e7c8 590{
d001648e 591 struct afs_call *call = (struct afs_call *)call_user_ID;
341f741f 592 int u;
d001648e 593
8e8d7f13 594 trace_afs_notify_call(rxcall, call);
d001648e 595 call->need_attention = true;
341f741f
DH
596
597 u = __atomic_add_unless(&call->usage, 1, 0);
598 if (u != 0) {
599 trace_afs_call(call, afs_call_trace_wake, u,
600 atomic_read(&afs_outstanding_calls),
601 __builtin_return_address(0));
602
603 if (!queue_work(afs_async_calls, &call->async_work))
604 afs_put_call(call);
605 }
08e0e7c8
DH
606}
607
08e0e7c8 608/*
341f741f
DH
609 * Delete an asynchronous call. The work item carries a ref to the call struct
610 * that we need to release.
08e0e7c8 611 */
d001648e 612static void afs_delete_async_call(struct work_struct *work)
08e0e7c8 613{
d001648e
DH
614 struct afs_call *call = container_of(work, struct afs_call, async_work);
615
08e0e7c8
DH
616 _enter("");
617
341f741f 618 afs_put_call(call);
08e0e7c8
DH
619
620 _leave("");
621}
622
623/*
341f741f
DH
624 * Perform I/O processing on an asynchronous call. The work item carries a ref
625 * to the call struct that we either need to release or to pass on.
08e0e7c8 626 */
d001648e 627static void afs_process_async_call(struct work_struct *work)
08e0e7c8 628{
d001648e
DH
629 struct afs_call *call = container_of(work, struct afs_call, async_work);
630
08e0e7c8
DH
631 _enter("");
632
d001648e
DH
633 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
634 call->need_attention = false;
08e0e7c8 635 afs_deliver_to_call(call);
d001648e 636 }
08e0e7c8 637
56ff9c83 638 if (call->state == AFS_CALL_COMPLETE) {
08e0e7c8
DH
639 call->reply = NULL;
640
341f741f
DH
641 /* We have two refs to release - one from the alloc and one
642 * queued with the work item - and we can't just deallocate the
643 * call because the work item may be queued again.
644 */
d001648e 645 call->async_work.func = afs_delete_async_call;
341f741f
DH
646 if (!queue_work(afs_async_calls, &call->async_work))
647 afs_put_call(call);
08e0e7c8
DH
648 }
649
341f741f 650 afs_put_call(call);
08e0e7c8
DH
651 _leave("");
652}
653
00e90712
DH
654static void afs_rx_attach(struct rxrpc_call *rxcall, unsigned long user_call_ID)
655{
656 struct afs_call *call = (struct afs_call *)user_call_ID;
657
658 call->rxcall = rxcall;
659}
660
661/*
662 * Charge the incoming call preallocation.
663 */
664static void afs_charge_preallocation(struct work_struct *work)
665{
666 struct afs_call *call = afs_spare_incoming_call;
667
668 for (;;) {
669 if (!call) {
341f741f 670 call = afs_alloc_call(&afs_RXCMxxxx, GFP_KERNEL);
00e90712
DH
671 if (!call)
672 break;
673
56ff9c83 674 call->async = true;
00e90712 675 call->state = AFS_CALL_AWAIT_OP_ID;
56ff9c83 676 init_waitqueue_head(&call->waitq);
00e90712
DH
677 }
678
679 if (rxrpc_kernel_charge_accept(afs_socket,
680 afs_wake_up_async_call,
681 afs_rx_attach,
682 (unsigned long)call,
683 GFP_KERNEL) < 0)
684 break;
685 call = NULL;
686 }
687 afs_spare_incoming_call = call;
688}
689
690/*
691 * Discard a preallocated call when a socket is shut down.
692 */
693static void afs_rx_discard_new_call(struct rxrpc_call *rxcall,
694 unsigned long user_call_ID)
695{
696 struct afs_call *call = (struct afs_call *)user_call_ID;
697
00e90712 698 call->rxcall = NULL;
341f741f 699 afs_put_call(call);
00e90712
DH
700}
701
d001648e
DH
702/*
703 * Notification of an incoming call.
704 */
00e90712
DH
705static void afs_rx_new_call(struct sock *sk, struct rxrpc_call *rxcall,
706 unsigned long user_call_ID)
d001648e 707{
00e90712 708 queue_work(afs_wq, &afs_charge_preallocation_work);
d001648e
DH
709}
710
08e0e7c8 711/*
372ee163
DH
712 * Grab the operation ID from an incoming cache manager call. The socket
713 * buffer is discarded on error or if we don't yet have sufficient data.
08e0e7c8 714 */
d001648e 715static int afs_deliver_cm_op_id(struct afs_call *call)
08e0e7c8 716{
d001648e 717 int ret;
08e0e7c8 718
d001648e 719 _enter("{%zu}", call->offset);
08e0e7c8
DH
720
721 ASSERTCMP(call->offset, <, 4);
722
723 /* the operation ID forms the first four bytes of the request data */
50a2c953 724 ret = afs_extract_data(call, &call->tmp, 4, true);
d001648e
DH
725 if (ret < 0)
726 return ret;
08e0e7c8 727
50a2c953 728 call->operation_ID = ntohl(call->tmp);
08e0e7c8 729 call->state = AFS_CALL_AWAIT_REQUEST;
d001648e 730 call->offset = 0;
08e0e7c8
DH
731
732 /* ask the cache manager to route the call (it'll change the call type
733 * if successful) */
734 if (!afs_cm_incoming_call(call))
735 return -ENOTSUPP;
736
8e8d7f13
DH
737 trace_afs_cb_call(call);
738
08e0e7c8
DH
739 /* pass responsibility for the remainer of this message off to the
740 * cache manager op */
d001648e 741 return call->type->deliver(call);
08e0e7c8
DH
742}
743
744/*
745 * send an empty reply
746 */
747void afs_send_empty_reply(struct afs_call *call)
748{
749 struct msghdr msg;
08e0e7c8
DH
750
751 _enter("");
752
e754eba6
DH
753 rxrpc_kernel_set_tx_length(afs_socket, call->rxcall, 0);
754
08e0e7c8
DH
755 msg.msg_name = NULL;
756 msg.msg_namelen = 0;
bfd4e956 757 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, NULL, 0, 0);
08e0e7c8
DH
758 msg.msg_control = NULL;
759 msg.msg_controllen = 0;
760 msg.msg_flags = 0;
761
762 call->state = AFS_CALL_AWAIT_ACK;
4de48af6 763 switch (rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, 0)) {
08e0e7c8
DH
764 case 0:
765 _leave(" [replied]");
766 return;
767
768 case -ENOMEM:
769 _debug("oom");
4de48af6 770 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
3a92789a 771 RX_USER_ABORT, -ENOMEM, "KOO");
08e0e7c8 772 default:
08e0e7c8
DH
773 _leave(" [error]");
774 return;
775 }
776}
777
b908fe6b
DH
778/*
779 * send a simple reply
780 */
781void afs_send_simple_reply(struct afs_call *call, const void *buf, size_t len)
782{
783 struct msghdr msg;
2e90b1c4 784 struct kvec iov[1];
bd6dc742 785 int n;
b908fe6b
DH
786
787 _enter("");
788
e754eba6
DH
789 rxrpc_kernel_set_tx_length(afs_socket, call->rxcall, len);
790
b908fe6b
DH
791 iov[0].iov_base = (void *) buf;
792 iov[0].iov_len = len;
793 msg.msg_name = NULL;
794 msg.msg_namelen = 0;
2e90b1c4 795 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1, len);
b908fe6b
DH
796 msg.msg_control = NULL;
797 msg.msg_controllen = 0;
798 msg.msg_flags = 0;
799
800 call->state = AFS_CALL_AWAIT_ACK;
4de48af6 801 n = rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, len);
bd6dc742 802 if (n >= 0) {
6c67c7c3 803 /* Success */
b908fe6b
DH
804 _leave(" [replied]");
805 return;
bd6dc742 806 }
6c67c7c3 807
bd6dc742 808 if (n == -ENOMEM) {
b908fe6b 809 _debug("oom");
4de48af6 810 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
3a92789a 811 RX_USER_ABORT, -ENOMEM, "KOO");
b908fe6b 812 }
bd6dc742 813 _leave(" [error]");
b908fe6b
DH
814}
815
08e0e7c8 816/*
372ee163 817 * Extract a piece of data from the received data socket buffers.
08e0e7c8 818 */
d001648e
DH
819int afs_extract_data(struct afs_call *call, void *buf, size_t count,
820 bool want_more)
08e0e7c8 821{
d001648e 822 int ret;
08e0e7c8 823
d001648e
DH
824 _enter("{%s,%zu},,%zu,%d",
825 call->type->name, call->offset, count, want_more);
08e0e7c8 826
d001648e 827 ASSERTCMP(call->offset, <=, count);
08e0e7c8 828
d001648e
DH
829 ret = rxrpc_kernel_recv_data(afs_socket, call->rxcall,
830 buf, count, &call->offset,
831 want_more, &call->abort_code);
8e8d7f13 832 trace_afs_recv_data(call, count, call->offset, want_more, ret);
d001648e
DH
833 if (ret == 0 || ret == -EAGAIN)
834 return ret;
08e0e7c8 835
d001648e
DH
836 if (ret == 1) {
837 switch (call->state) {
838 case AFS_CALL_AWAIT_REPLY:
839 call->state = AFS_CALL_COMPLETE;
840 break;
841 case AFS_CALL_AWAIT_REQUEST:
842 call->state = AFS_CALL_REPLYING;
843 break;
844 default:
845 break;
846 }
847 return 0;
08e0e7c8 848 }
d001648e
DH
849
850 if (ret == -ECONNABORTED)
851 call->error = call->type->abort_to_error(call->abort_code);
852 else
853 call->error = ret;
854 call->state = AFS_CALL_COMPLETE;
855 return ret;
08e0e7c8 856}