mscc.c: fix semicolon.cocci warnings
[linux-2.6-block.git] / fs / afs / rxrpc.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
08e0e7c8
DH
2/* Maintain an RxRPC server socket to do AFS communications through
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
08e0e7c8
DH
6 */
7
5a0e3ad6 8#include <linux/slab.h>
174cd4b1
IM
9#include <linux/sched/signal.h>
10
08e0e7c8
DH
11#include <net/sock.h>
12#include <net/af_rxrpc.h>
08e0e7c8
DH
13#include "internal.h"
14#include "afs_cm.h"
35dbfba3 15#include "protocol_yfs.h"
08e0e7c8 16
f044c884 17struct workqueue_struct *afs_async_calls;
08e0e7c8 18
d001648e 19static void afs_wake_up_call_waiter(struct sock *, struct rxrpc_call *, unsigned long);
d001648e 20static void afs_wake_up_async_call(struct sock *, struct rxrpc_call *, unsigned long);
34fa4761 21static void afs_delete_async_call(struct work_struct *);
d001648e 22static void afs_process_async_call(struct work_struct *);
00e90712
DH
23static void afs_rx_new_call(struct sock *, struct rxrpc_call *, unsigned long);
24static void afs_rx_discard_new_call(struct rxrpc_call *, unsigned long);
d001648e 25static int afs_deliver_cm_op_id(struct afs_call *);
08e0e7c8 26
08e0e7c8
DH
27/* asynchronous incoming call initial processing */
28static const struct afs_call_type afs_RXCMxxxx = {
00d3b7a4 29 .name = "CB.xxxx",
08e0e7c8 30 .deliver = afs_deliver_cm_op_id,
08e0e7c8
DH
31};
32
08e0e7c8
DH
33/*
34 * open an RxRPC socket and bind it to be a server for callback notifications
35 * - the socket is left in blocking mode and non-blocking ops use MSG_DONTWAIT
36 */
f044c884 37int afs_open_socket(struct afs_net *net)
08e0e7c8
DH
38{
39 struct sockaddr_rxrpc srx;
40 struct socket *socket;
4776cab4 41 unsigned int min_level;
08e0e7c8
DH
42 int ret;
43
44 _enter("");
45
5b86d4ff 46 ret = sock_create_kern(net->net, AF_RXRPC, SOCK_DGRAM, PF_INET6, &socket);
0e119b41
DH
47 if (ret < 0)
48 goto error_1;
08e0e7c8
DH
49
50 socket->sk->sk_allocation = GFP_NOFS;
51
52 /* bind the callback manager's address to make this a server socket */
3838d3ec 53 memset(&srx, 0, sizeof(srx));
08e0e7c8
DH
54 srx.srx_family = AF_RXRPC;
55 srx.srx_service = CM_SERVICE;
56 srx.transport_type = SOCK_DGRAM;
3838d3ec
DH
57 srx.transport_len = sizeof(srx.transport.sin6);
58 srx.transport.sin6.sin6_family = AF_INET6;
59 srx.transport.sin6.sin6_port = htons(AFS_CM_PORT);
08e0e7c8 60
4776cab4
DH
61 min_level = RXRPC_SECURITY_ENCRYPT;
62 ret = kernel_setsockopt(socket, SOL_RXRPC, RXRPC_MIN_SECURITY_LEVEL,
63 (void *)&min_level, sizeof(min_level));
64 if (ret < 0)
65 goto error_2;
66
08e0e7c8 67 ret = kernel_bind(socket, (struct sockaddr *) &srx, sizeof(srx));
83732ec5
MD
68 if (ret == -EADDRINUSE) {
69 srx.transport.sin6.sin6_port = 0;
70 ret = kernel_bind(socket, (struct sockaddr *) &srx, sizeof(srx));
71 }
0e119b41
DH
72 if (ret < 0)
73 goto error_2;
74
35dbfba3
DH
75 srx.srx_service = YFS_CM_SERVICE;
76 ret = kernel_bind(socket, (struct sockaddr *) &srx, sizeof(srx));
77 if (ret < 0)
78 goto error_2;
79
3bf0fb6f
DH
80 /* Ideally, we'd turn on service upgrade here, but we can't because
81 * OpenAFS is buggy and leaks the userStatus field from packet to
82 * packet and between FS packets and CB packets - so if we try to do an
83 * upgrade on an FS packet, OpenAFS will leak that into the CB packet
84 * it sends back to us.
85 */
35dbfba3 86
00e90712
DH
87 rxrpc_kernel_new_call_notification(socket, afs_rx_new_call,
88 afs_rx_discard_new_call);
d001648e 89
0e119b41
DH
90 ret = kernel_listen(socket, INT_MAX);
91 if (ret < 0)
92 goto error_2;
08e0e7c8 93
f044c884
DH
94 net->socket = socket;
95 afs_charge_preallocation(&net->charge_preallocation_work);
08e0e7c8
DH
96 _leave(" = 0");
97 return 0;
0e119b41
DH
98
99error_2:
100 sock_release(socket);
101error_1:
0e119b41
DH
102 _leave(" = %d", ret);
103 return ret;
08e0e7c8
DH
104}
105
106/*
107 * close the RxRPC socket AFS was using
108 */
f044c884 109void afs_close_socket(struct afs_net *net)
08e0e7c8
DH
110{
111 _enter("");
112
f044c884 113 kernel_listen(net->socket, 0);
341f741f
DH
114 flush_workqueue(afs_async_calls);
115
f044c884
DH
116 if (net->spare_incoming_call) {
117 afs_put_call(net->spare_incoming_call);
118 net->spare_incoming_call = NULL;
00e90712
DH
119 }
120
f044c884 121 _debug("outstanding %u", atomic_read(&net->nr_outstanding_calls));
ab1fbe32
PZ
122 wait_var_event(&net->nr_outstanding_calls,
123 !atomic_read(&net->nr_outstanding_calls));
2f02f7ae
DH
124 _debug("no outstanding calls");
125
f044c884 126 kernel_sock_shutdown(net->socket, SHUT_RDWR);
d001648e 127 flush_workqueue(afs_async_calls);
f044c884 128 sock_release(net->socket);
08e0e7c8
DH
129
130 _debug("dework");
08e0e7c8
DH
131 _leave("");
132}
133
00d3b7a4 134/*
341f741f 135 * Allocate a call.
00d3b7a4 136 */
f044c884
DH
137static struct afs_call *afs_alloc_call(struct afs_net *net,
138 const struct afs_call_type *type,
341f741f 139 gfp_t gfp)
00d3b7a4 140{
341f741f
DH
141 struct afs_call *call;
142 int o;
00d3b7a4 143
341f741f
DH
144 call = kzalloc(sizeof(*call), gfp);
145 if (!call)
146 return NULL;
00d3b7a4 147
341f741f 148 call->type = type;
f044c884 149 call->net = net;
a25e21f0 150 call->debug_id = atomic_inc_return(&rxrpc_debug_id);
341f741f
DH
151 atomic_set(&call->usage, 1);
152 INIT_WORK(&call->async_work, afs_process_async_call);
153 init_waitqueue_head(&call->waitq);
98bf40cd 154 spin_lock_init(&call->state_lock);
12bdcf33 155 call->_iter = &call->iter;
2f02f7ae 156
f044c884 157 o = atomic_inc_return(&net->nr_outstanding_calls);
341f741f
DH
158 trace_afs_call(call, afs_call_trace_alloc, 1, o,
159 __builtin_return_address(0));
160 return call;
00d3b7a4
DH
161}
162
6c67c7c3 163/*
341f741f 164 * Dispose of a reference on a call.
6c67c7c3 165 */
341f741f 166void afs_put_call(struct afs_call *call)
6c67c7c3 167{
f044c884 168 struct afs_net *net = call->net;
341f741f 169 int n = atomic_dec_return(&call->usage);
f044c884 170 int o = atomic_read(&net->nr_outstanding_calls);
341f741f
DH
171
172 trace_afs_call(call, afs_call_trace_put, n + 1, o,
173 __builtin_return_address(0));
174
175 ASSERTCMP(n, >=, 0);
176 if (n == 0) {
177 ASSERT(!work_pending(&call->async_work));
178 ASSERT(call->type->name != NULL);
179
180 if (call->rxcall) {
f044c884 181 rxrpc_kernel_end_call(net->socket, call->rxcall);
341f741f
DH
182 call->rxcall = NULL;
183 }
184 if (call->type->destructor)
185 call->type->destructor(call);
186
45218193 187 afs_put_server(call->net, call->server, afs_server_trace_put_call);
d2ddc776 188 afs_put_cb_interest(call->net, call->cbi);
3bf0fb6f 189 afs_put_addrlist(call->alist);
341f741f 190 kfree(call->request);
341f741f 191
341f741f
DH
192 trace_afs_call(call, afs_call_trace_free, 0, o,
193 __builtin_return_address(0));
a25e21f0
DH
194 kfree(call);
195
196 o = atomic_dec_return(&net->nr_outstanding_calls);
341f741f 197 if (o == 0)
ab1fbe32 198 wake_up_var(&net->nr_outstanding_calls);
6c67c7c3 199 }
6cf12869
NWF
200}
201
7a75b007
DH
202static struct afs_call *afs_get_call(struct afs_call *call,
203 enum afs_call_trace why)
204{
205 int u = atomic_inc_return(&call->usage);
206
207 trace_afs_call(call, why, u,
208 atomic_read(&call->net->nr_outstanding_calls),
209 __builtin_return_address(0));
210 return call;
211}
212
6cf12869 213/*
3bf0fb6f 214 * Queue the call for actual work.
6cf12869 215 */
3bf0fb6f 216static void afs_queue_call_work(struct afs_call *call)
6cf12869 217{
3bf0fb6f 218 if (call->type->work) {
3bf0fb6f 219 INIT_WORK(&call->work, call->type->work);
341f741f 220
7a75b007 221 afs_get_call(call, afs_call_trace_work);
3bf0fb6f
DH
222 if (!queue_work(afs_wq, &call->work))
223 afs_put_call(call);
224 }
6c67c7c3
DH
225}
226
08e0e7c8
DH
227/*
228 * allocate a call with flat request and reply buffers
229 */
f044c884
DH
230struct afs_call *afs_alloc_flat_call(struct afs_net *net,
231 const struct afs_call_type *type,
d001648e 232 size_t request_size, size_t reply_max)
08e0e7c8
DH
233{
234 struct afs_call *call;
235
f044c884 236 call = afs_alloc_call(net, type, GFP_NOFS);
08e0e7c8
DH
237 if (!call)
238 goto nomem_call;
239
240 if (request_size) {
341f741f 241 call->request_size = request_size;
08e0e7c8
DH
242 call->request = kmalloc(request_size, GFP_NOFS);
243 if (!call->request)
00d3b7a4 244 goto nomem_free;
08e0e7c8
DH
245 }
246
d001648e 247 if (reply_max) {
341f741f 248 call->reply_max = reply_max;
d001648e 249 call->buffer = kmalloc(reply_max, GFP_NOFS);
08e0e7c8 250 if (!call->buffer)
00d3b7a4 251 goto nomem_free;
08e0e7c8
DH
252 }
253
12bdcf33 254 afs_extract_to_buf(call, call->reply_max);
025db80c 255 call->operation_ID = type->op;
08e0e7c8 256 init_waitqueue_head(&call->waitq);
08e0e7c8
DH
257 return call;
258
00d3b7a4 259nomem_free:
341f741f 260 afs_put_call(call);
08e0e7c8
DH
261nomem_call:
262 return NULL;
263}
264
265/*
266 * clean up a call with flat buffer
267 */
268void afs_flat_call_destructor(struct afs_call *call)
269{
270 _enter("");
271
272 kfree(call->request);
273 call->request = NULL;
274 kfree(call->buffer);
275 call->buffer = NULL;
276}
277
2f5705a5
DH
278#define AFS_BVEC_MAX 8
279
280/*
281 * Load the given bvec with the next few pages.
282 */
283static void afs_load_bvec(struct afs_call *call, struct msghdr *msg,
284 struct bio_vec *bv, pgoff_t first, pgoff_t last,
285 unsigned offset)
286{
287 struct page *pages[AFS_BVEC_MAX];
288 unsigned int nr, n, i, to, bytes = 0;
289
290 nr = min_t(pgoff_t, last - first + 1, AFS_BVEC_MAX);
291 n = find_get_pages_contig(call->mapping, first, nr, pages);
292 ASSERTCMP(n, ==, nr);
293
294 msg->msg_flags |= MSG_MORE;
295 for (i = 0; i < nr; i++) {
296 to = PAGE_SIZE;
297 if (first + i >= last) {
298 to = call->last_to;
299 msg->msg_flags &= ~MSG_MORE;
300 }
301 bv[i].bv_page = pages[i];
302 bv[i].bv_len = to - offset;
303 bv[i].bv_offset = offset;
304 bytes += to - offset;
305 offset = 0;
306 }
307
aa563d7b 308 iov_iter_bvec(&msg->msg_iter, WRITE, bv, nr, bytes);
2f5705a5
DH
309}
310
e833251a
DH
311/*
312 * Advance the AFS call state when the RxRPC call ends the transmit phase.
313 */
314static void afs_notify_end_request_tx(struct sock *sock,
315 struct rxrpc_call *rxcall,
316 unsigned long call_user_ID)
317{
318 struct afs_call *call = (struct afs_call *)call_user_ID;
319
98bf40cd 320 afs_set_call_state(call, AFS_CALL_CL_REQUESTING, AFS_CALL_CL_AWAIT_REPLY);
e833251a
DH
321}
322
31143d5d
DH
323/*
324 * attach the data from a bunch of pages on an inode to a call
325 */
39c6acea 326static int afs_send_pages(struct afs_call *call, struct msghdr *msg)
31143d5d 327{
2f5705a5
DH
328 struct bio_vec bv[AFS_BVEC_MAX];
329 unsigned int bytes, nr, loop, offset;
31143d5d
DH
330 pgoff_t first = call->first, last = call->last;
331 int ret;
332
31143d5d
DH
333 offset = call->first_offset;
334 call->first_offset = 0;
335
336 do {
2f5705a5 337 afs_load_bvec(call, msg, bv, first, last, offset);
2c099014
DH
338 trace_afs_send_pages(call, msg, first, last, offset);
339
2f5705a5
DH
340 offset = 0;
341 bytes = msg->msg_iter.count;
342 nr = msg->msg_iter.nr_segs;
343
f044c884 344 ret = rxrpc_kernel_send_data(call->net->socket, call->rxcall, msg,
e833251a 345 bytes, afs_notify_end_request_tx);
2f5705a5
DH
346 for (loop = 0; loop < nr; loop++)
347 put_page(bv[loop].bv_page);
31143d5d
DH
348 if (ret < 0)
349 break;
2f5705a5
DH
350
351 first += nr;
5bbf5d39 352 } while (first <= last);
31143d5d 353
2c099014 354 trace_afs_sent_pages(call, call->first, last, first, ret);
31143d5d
DH
355 return ret;
356}
357
08e0e7c8 358/*
0b9bf381
DH
359 * Initiate a call and synchronously queue up the parameters for dispatch. Any
360 * error is stored into the call struct, which the caller must check for.
08e0e7c8 361 */
0b9bf381 362void afs_make_call(struct afs_addr_cursor *ac, struct afs_call *call, gfp_t gfp)
08e0e7c8 363{
2feeaf84 364 struct sockaddr_rxrpc *srx = &ac->alist->addrs[ac->index];
08e0e7c8
DH
365 struct rxrpc_call *rxcall;
366 struct msghdr msg;
367 struct kvec iov[1];
e754eba6 368 s64 tx_total_len;
08e0e7c8
DH
369 int ret;
370
4d9df986 371 _enter(",{%pISp},", &srx->transport);
08e0e7c8 372
00d3b7a4
DH
373 ASSERT(call->type != NULL);
374 ASSERT(call->type->name != NULL);
375
31143d5d
DH
376 _debug("____MAKE %p{%s,%x} [%d]____",
377 call, call->type->name, key_serial(call->key),
f044c884 378 atomic_read(&call->net->nr_outstanding_calls));
00d3b7a4 379
3bf0fb6f
DH
380 call->addr_ix = ac->index;
381 call->alist = afs_get_addrlist(ac->alist);
08e0e7c8 382
e754eba6
DH
383 /* Work out the length we're going to transmit. This is awkward for
384 * calls such as FS.StoreData where there's an extra injection of data
385 * after the initial fixed part.
386 */
387 tx_total_len = call->request_size;
388 if (call->send_pages) {
1199db60
DH
389 if (call->last == call->first) {
390 tx_total_len += call->last_to - call->first_offset;
391 } else {
392 /* It looks mathematically like you should be able to
393 * combine the following lines with the ones above, but
394 * unsigned arithmetic is fun when it wraps...
395 */
396 tx_total_len += PAGE_SIZE - call->first_offset;
397 tx_total_len += call->last_to;
398 tx_total_len += (call->last - call->first - 1) * PAGE_SIZE;
399 }
e754eba6
DH
400 }
401
34fa4761
DH
402 /* If the call is going to be asynchronous, we need an extra ref for
403 * the call to hold itself so the caller need not hang on to its ref.
404 */
405 if (call->async)
406 afs_get_call(call, afs_call_trace_get);
407
08e0e7c8 408 /* create a call */
4d9df986 409 rxcall = rxrpc_kernel_begin_call(call->net->socket, srx, call->key,
e754eba6
DH
410 (unsigned long)call,
411 tx_total_len, gfp,
0b9bf381 412 (call->async ?
56ff9c83 413 afs_wake_up_async_call :
a68f4a27 414 afs_wake_up_call_waiter),
a25e21f0 415 call->upgrade,
20b8391f 416 call->intr,
a25e21f0 417 call->debug_id);
08e0e7c8
DH
418 if (IS_ERR(rxcall)) {
419 ret = PTR_ERR(rxcall);
3bf0fb6f 420 call->error = ret;
08e0e7c8
DH
421 goto error_kill_call;
422 }
423
424 call->rxcall = rxcall;
425
94f699c9
DH
426 if (call->max_lifespan)
427 rxrpc_kernel_set_max_life(call->net->socket, rxcall,
428 call->max_lifespan);
429
08e0e7c8
DH
430 /* send the request */
431 iov[0].iov_base = call->request;
432 iov[0].iov_len = call->request_size;
433
434 msg.msg_name = NULL;
435 msg.msg_namelen = 0;
aa563d7b 436 iov_iter_kvec(&msg.msg_iter, WRITE, iov, 1, call->request_size);
08e0e7c8
DH
437 msg.msg_control = NULL;
438 msg.msg_controllen = 0;
bc5e3a54 439 msg.msg_flags = MSG_WAITALL | (call->send_pages ? MSG_MORE : 0);
08e0e7c8 440
f044c884 441 ret = rxrpc_kernel_send_data(call->net->socket, rxcall,
e833251a
DH
442 &msg, call->request_size,
443 afs_notify_end_request_tx);
08e0e7c8
DH
444 if (ret < 0)
445 goto error_do_abort;
446
31143d5d 447 if (call->send_pages) {
39c6acea 448 ret = afs_send_pages(call, &msg);
31143d5d
DH
449 if (ret < 0)
450 goto error_do_abort;
451 }
452
34fa4761
DH
453 /* Note that at this point, we may have received the reply or an abort
454 * - and an asynchronous call may already have completed.
0b9bf381
DH
455 *
456 * afs_wait_for_call_to_complete(call, ac)
457 * must be called to synchronously clean up.
34fa4761 458 */
0b9bf381 459 return;
08e0e7c8
DH
460
461error_do_abort:
70af0e3b 462 if (ret != -ECONNABORTED) {
f044c884
DH
463 rxrpc_kernel_abort_call(call->net->socket, rxcall,
464 RX_USER_ABORT, ret, "KSD");
70af0e3b 465 } else {
aa563d7b 466 iov_iter_kvec(&msg.msg_iter, READ, NULL, 0, 0);
eb9950eb
DH
467 rxrpc_kernel_recv_data(call->net->socket, rxcall,
468 &msg.msg_iter, false,
469 &call->abort_code, &call->service_id);
d2ddc776
DH
470 ac->abort_code = call->abort_code;
471 ac->responded = true;
70af0e3b 472 }
025db80c
DH
473 call->error = ret;
474 trace_afs_call_done(call);
08e0e7c8 475error_kill_call:
3bf0fb6f
DH
476 if (call->type->done)
477 call->type->done(call);
34fa4761
DH
478
479 /* We need to dispose of the extra ref we grabbed for an async call.
480 * The call, however, might be queued on afs_async_calls and we need to
481 * make sure we don't get any more notifications that might requeue it.
482 */
483 if (call->rxcall) {
484 rxrpc_kernel_end_call(call->net->socket, call->rxcall);
485 call->rxcall = NULL;
486 }
487 if (call->async) {
488 if (cancel_work_sync(&call->async_work))
489 afs_put_call(call);
490 afs_put_call(call);
491 }
492
d2ddc776 493 ac->error = ret;
34fa4761 494 call->state = AFS_CALL_COMPLETE;
08e0e7c8 495 _leave(" = %d", ret);
08e0e7c8
DH
496}
497
08e0e7c8
DH
498/*
499 * deliver messages to a call
500 */
501static void afs_deliver_to_call(struct afs_call *call)
502{
98bf40cd
DH
503 enum afs_call_state state;
504 u32 abort_code, remote_abort = 0;
08e0e7c8
DH
505 int ret;
506
d001648e
DH
507 _enter("%s", call->type->name);
508
98bf40cd
DH
509 while (state = READ_ONCE(call->state),
510 state == AFS_CALL_CL_AWAIT_REPLY ||
511 state == AFS_CALL_SV_AWAIT_OP_ID ||
512 state == AFS_CALL_SV_AWAIT_REQUEST ||
513 state == AFS_CALL_SV_AWAIT_ACK
d001648e 514 ) {
98bf40cd 515 if (state == AFS_CALL_SV_AWAIT_ACK) {
12bdcf33 516 iov_iter_kvec(&call->iter, READ, NULL, 0, 0);
f044c884 517 ret = rxrpc_kernel_recv_data(call->net->socket,
12bdcf33
DH
518 call->rxcall, &call->iter,
519 false, &remote_abort,
a68f4a27 520 &call->service_id);
12bdcf33 521 trace_afs_receive_data(call, &call->iter, false, ret);
8e8d7f13 522
d001648e
DH
523 if (ret == -EINPROGRESS || ret == -EAGAIN)
524 return;
98bf40cd
DH
525 if (ret < 0 || ret == 1) {
526 if (ret == 1)
527 ret = 0;
025db80c 528 goto call_complete;
98bf40cd 529 }
d001648e 530 return;
08e0e7c8
DH
531 }
532
4571577f 533 if (!call->have_reply_time &&
12d8e95a
DH
534 rxrpc_kernel_get_reply_time(call->net->socket,
535 call->rxcall,
536 &call->reply_time))
4571577f 537 call->have_reply_time = true;
12d8e95a 538
d001648e 539 ret = call->type->deliver(call);
98bf40cd 540 state = READ_ONCE(call->state);
d001648e
DH
541 switch (ret) {
542 case 0:
3bf0fb6f 543 afs_queue_call_work(call);
f2686b09
DH
544 if (state == AFS_CALL_CL_PROC_REPLY) {
545 if (call->cbi)
546 set_bit(AFS_SERVER_FL_MAY_HAVE_CB,
547 &call->cbi->server->flags);
025db80c 548 goto call_complete;
f2686b09 549 }
98bf40cd 550 ASSERTCMP(state, >, AFS_CALL_CL_PROC_REPLY);
d001648e
DH
551 goto done;
552 case -EINPROGRESS:
553 case -EAGAIN:
554 goto out;
70af0e3b 555 case -ECONNABORTED:
98bf40cd
DH
556 ASSERTCMP(state, ==, AFS_CALL_COMPLETE);
557 goto done;
d001648e 558 case -ENOTSUPP:
1157f153 559 abort_code = RXGEN_OPCODE;
f044c884 560 rxrpc_kernel_abort_call(call->net->socket, call->rxcall,
3a92789a 561 abort_code, ret, "KIV");
98bf40cd 562 goto local_abort;
4ac15ea5
DH
563 case -EIO:
564 pr_err("kAFS: Call %u in bad state %u\n",
565 call->debug_id, state);
566 /* Fall through */
d001648e
DH
567 case -ENODATA:
568 case -EBADMSG:
569 case -EMSGSIZE:
d001648e 570 abort_code = RXGEN_CC_UNMARSHAL;
98bf40cd 571 if (state != AFS_CALL_CL_AWAIT_REPLY)
d001648e 572 abort_code = RXGEN_SS_UNMARSHAL;
f044c884 573 rxrpc_kernel_abort_call(call->net->socket, call->rxcall,
12bdcf33 574 abort_code, ret, "KUM");
98bf40cd 575 goto local_abort;
8022c4b9
DH
576 default:
577 abort_code = RX_USER_ABORT;
578 rxrpc_kernel_abort_call(call->net->socket, call->rxcall,
579 abort_code, ret, "KER");
580 goto local_abort;
d001648e 581 }
08e0e7c8
DH
582 }
583
d001648e 584done:
3bf0fb6f
DH
585 if (call->type->done)
586 call->type->done(call);
98bf40cd 587 if (state == AFS_CALL_COMPLETE && call->incoming)
341f741f 588 afs_put_call(call);
d001648e 589out:
08e0e7c8 590 _leave("");
d001648e
DH
591 return;
592
98bf40cd
DH
593local_abort:
594 abort_code = 0;
025db80c 595call_complete:
98bf40cd
DH
596 afs_set_call_complete(call, ret, remote_abort);
597 state = AFS_CALL_COMPLETE;
d001648e 598 goto done;
08e0e7c8
DH
599}
600
601/*
0b9bf381 602 * Wait synchronously for a call to complete and clean up the call struct.
08e0e7c8 603 */
0b9bf381
DH
604long afs_wait_for_call_to_complete(struct afs_call *call,
605 struct afs_addr_cursor *ac)
08e0e7c8 606{
bc5e3a54 607 signed long rtt2, timeout;
33cd7f2b 608 long ret;
7150ceaa 609 bool stalled = false;
bc5e3a54
DH
610 u64 rtt;
611 u32 life, last_life;
f7f1dd31 612 bool rxrpc_complete = false;
08e0e7c8
DH
613
614 DECLARE_WAITQUEUE(myself, current);
615
616 _enter("");
617
0b9bf381
DH
618 ret = call->error;
619 if (ret < 0)
620 goto out;
621
f044c884 622 rtt = rxrpc_kernel_get_rtt(call->net->socket, call->rxcall);
bc5e3a54
DH
623 rtt2 = nsecs_to_jiffies64(rtt) * 2;
624 if (rtt2 < 2)
625 rtt2 = 2;
626
627 timeout = rtt2;
4611da30 628 rxrpc_kernel_check_life(call->net->socket, call->rxcall, &last_life);
bc5e3a54 629
08e0e7c8
DH
630 add_wait_queue(&call->waitq, &myself);
631 for (;;) {
bc5e3a54 632 set_current_state(TASK_UNINTERRUPTIBLE);
08e0e7c8
DH
633
634 /* deliver any messages that are in the queue */
98bf40cd
DH
635 if (!afs_check_call_state(call, AFS_CALL_COMPLETE) &&
636 call->need_attention) {
d001648e 637 call->need_attention = false;
08e0e7c8
DH
638 __set_current_state(TASK_RUNNING);
639 afs_deliver_to_call(call);
640 continue;
641 }
642
98bf40cd 643 if (afs_check_call_state(call, AFS_CALL_COMPLETE))
08e0e7c8 644 break;
bc5e3a54 645
f7f1dd31
MD
646 if (!rxrpc_kernel_check_life(call->net->socket, call->rxcall, &life)) {
647 /* rxrpc terminated the call. */
648 rxrpc_complete = true;
649 break;
650 }
651
20b8391f 652 if (call->intr && timeout == 0 &&
7150ceaa
DH
653 life == last_life && signal_pending(current)) {
654 if (stalled)
bc5e3a54 655 break;
7150ceaa
DH
656 __set_current_state(TASK_RUNNING);
657 rxrpc_kernel_probe_life(call->net->socket, call->rxcall);
658 timeout = rtt2;
659 stalled = true;
660 continue;
661 }
bc5e3a54
DH
662
663 if (life != last_life) {
664 timeout = rtt2;
665 last_life = life;
7150ceaa 666 stalled = false;
bc5e3a54
DH
667 }
668
669 timeout = schedule_timeout(timeout);
08e0e7c8
DH
670 }
671
672 remove_wait_queue(&call->waitq, &myself);
673 __set_current_state(TASK_RUNNING);
674
98bf40cd 675 if (!afs_check_call_state(call, AFS_CALL_COMPLETE)) {
f7f1dd31
MD
676 if (rxrpc_complete) {
677 afs_set_call_complete(call, call->error, call->abort_code);
678 } else {
679 /* Kill off the call if it's still live. */
680 _debug("call interrupted");
681 if (rxrpc_kernel_abort_call(call->net->socket, call->rxcall,
682 RX_USER_ABORT, -EINTR, "KWI"))
683 afs_set_call_complete(call, -EINTR, 0);
684 }
08e0e7c8
DH
685 }
686
98bf40cd 687 spin_lock_bh(&call->state_lock);
d2ddc776
DH
688 ac->abort_code = call->abort_code;
689 ac->error = call->error;
98bf40cd 690 spin_unlock_bh(&call->state_lock);
d2ddc776
DH
691
692 ret = ac->error;
693 switch (ret) {
694 case 0:
ffba718e
DH
695 ret = call->ret0;
696 call->ret0 = 0;
697
d2ddc776
DH
698 /* Fall through */
699 case -ECONNABORTED:
700 ac->responded = true;
701 break;
33cd7f2b
DH
702 }
703
0b9bf381 704out:
08e0e7c8 705 _debug("call complete");
341f741f 706 afs_put_call(call);
33cd7f2b 707 _leave(" = %p", (void *)ret);
08e0e7c8
DH
708 return ret;
709}
710
711/*
712 * wake up a waiting call
713 */
d001648e
DH
714static void afs_wake_up_call_waiter(struct sock *sk, struct rxrpc_call *rxcall,
715 unsigned long call_user_ID)
08e0e7c8 716{
d001648e
DH
717 struct afs_call *call = (struct afs_call *)call_user_ID;
718
719 call->need_attention = true;
08e0e7c8
DH
720 wake_up(&call->waitq);
721}
722
723/*
724 * wake up an asynchronous call
725 */
d001648e
DH
726static void afs_wake_up_async_call(struct sock *sk, struct rxrpc_call *rxcall,
727 unsigned long call_user_ID)
08e0e7c8 728{
d001648e 729 struct afs_call *call = (struct afs_call *)call_user_ID;
341f741f 730 int u;
d001648e 731
8e8d7f13 732 trace_afs_notify_call(rxcall, call);
d001648e 733 call->need_attention = true;
341f741f 734
bfc18e38 735 u = atomic_fetch_add_unless(&call->usage, 1, 0);
341f741f
DH
736 if (u != 0) {
737 trace_afs_call(call, afs_call_trace_wake, u,
f044c884 738 atomic_read(&call->net->nr_outstanding_calls),
341f741f
DH
739 __builtin_return_address(0));
740
741 if (!queue_work(afs_async_calls, &call->async_work))
742 afs_put_call(call);
743 }
08e0e7c8
DH
744}
745
08e0e7c8 746/*
341f741f
DH
747 * Delete an asynchronous call. The work item carries a ref to the call struct
748 * that we need to release.
08e0e7c8 749 */
d001648e 750static void afs_delete_async_call(struct work_struct *work)
08e0e7c8 751{
d001648e
DH
752 struct afs_call *call = container_of(work, struct afs_call, async_work);
753
08e0e7c8
DH
754 _enter("");
755
341f741f 756 afs_put_call(call);
08e0e7c8
DH
757
758 _leave("");
759}
760
761/*
341f741f
DH
762 * Perform I/O processing on an asynchronous call. The work item carries a ref
763 * to the call struct that we either need to release or to pass on.
08e0e7c8 764 */
d001648e 765static void afs_process_async_call(struct work_struct *work)
08e0e7c8 766{
d001648e
DH
767 struct afs_call *call = container_of(work, struct afs_call, async_work);
768
08e0e7c8
DH
769 _enter("");
770
d001648e
DH
771 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
772 call->need_attention = false;
08e0e7c8 773 afs_deliver_to_call(call);
d001648e 774 }
08e0e7c8 775
56ff9c83 776 if (call->state == AFS_CALL_COMPLETE) {
341f741f
DH
777 /* We have two refs to release - one from the alloc and one
778 * queued with the work item - and we can't just deallocate the
779 * call because the work item may be queued again.
780 */
d001648e 781 call->async_work.func = afs_delete_async_call;
341f741f
DH
782 if (!queue_work(afs_async_calls, &call->async_work))
783 afs_put_call(call);
08e0e7c8
DH
784 }
785
341f741f 786 afs_put_call(call);
08e0e7c8
DH
787 _leave("");
788}
789
00e90712
DH
790static void afs_rx_attach(struct rxrpc_call *rxcall, unsigned long user_call_ID)
791{
792 struct afs_call *call = (struct afs_call *)user_call_ID;
793
794 call->rxcall = rxcall;
795}
796
797/*
798 * Charge the incoming call preallocation.
799 */
f044c884 800void afs_charge_preallocation(struct work_struct *work)
00e90712 801{
f044c884
DH
802 struct afs_net *net =
803 container_of(work, struct afs_net, charge_preallocation_work);
804 struct afs_call *call = net->spare_incoming_call;
00e90712
DH
805
806 for (;;) {
807 if (!call) {
f044c884 808 call = afs_alloc_call(net, &afs_RXCMxxxx, GFP_KERNEL);
00e90712
DH
809 if (!call)
810 break;
811
56ff9c83 812 call->async = true;
98bf40cd 813 call->state = AFS_CALL_SV_AWAIT_OP_ID;
56ff9c83 814 init_waitqueue_head(&call->waitq);
12bdcf33 815 afs_extract_to_tmp(call);
00e90712
DH
816 }
817
f044c884 818 if (rxrpc_kernel_charge_accept(net->socket,
00e90712
DH
819 afs_wake_up_async_call,
820 afs_rx_attach,
821 (unsigned long)call,
a25e21f0
DH
822 GFP_KERNEL,
823 call->debug_id) < 0)
00e90712
DH
824 break;
825 call = NULL;
826 }
f044c884 827 net->spare_incoming_call = call;
00e90712
DH
828}
829
830/*
831 * Discard a preallocated call when a socket is shut down.
832 */
833static void afs_rx_discard_new_call(struct rxrpc_call *rxcall,
834 unsigned long user_call_ID)
835{
836 struct afs_call *call = (struct afs_call *)user_call_ID;
837
00e90712 838 call->rxcall = NULL;
341f741f 839 afs_put_call(call);
00e90712
DH
840}
841
d001648e
DH
842/*
843 * Notification of an incoming call.
844 */
00e90712
DH
845static void afs_rx_new_call(struct sock *sk, struct rxrpc_call *rxcall,
846 unsigned long user_call_ID)
d001648e 847{
f044c884
DH
848 struct afs_net *net = afs_sock2net(sk);
849
850 queue_work(afs_wq, &net->charge_preallocation_work);
d001648e
DH
851}
852
08e0e7c8 853/*
372ee163
DH
854 * Grab the operation ID from an incoming cache manager call. The socket
855 * buffer is discarded on error or if we don't yet have sufficient data.
08e0e7c8 856 */
d001648e 857static int afs_deliver_cm_op_id(struct afs_call *call)
08e0e7c8 858{
d001648e 859 int ret;
08e0e7c8 860
12bdcf33 861 _enter("{%zu}", iov_iter_count(call->_iter));
08e0e7c8
DH
862
863 /* the operation ID forms the first four bytes of the request data */
12bdcf33 864 ret = afs_extract_data(call, true);
d001648e
DH
865 if (ret < 0)
866 return ret;
08e0e7c8 867
50a2c953 868 call->operation_ID = ntohl(call->tmp);
98bf40cd 869 afs_set_call_state(call, AFS_CALL_SV_AWAIT_OP_ID, AFS_CALL_SV_AWAIT_REQUEST);
08e0e7c8
DH
870
871 /* ask the cache manager to route the call (it'll change the call type
872 * if successful) */
873 if (!afs_cm_incoming_call(call))
874 return -ENOTSUPP;
875
8e8d7f13
DH
876 trace_afs_cb_call(call);
877
08e0e7c8
DH
878 /* pass responsibility for the remainer of this message off to the
879 * cache manager op */
d001648e 880 return call->type->deliver(call);
08e0e7c8
DH
881}
882
e833251a
DH
883/*
884 * Advance the AFS call state when an RxRPC service call ends the transmit
885 * phase.
886 */
887static void afs_notify_end_reply_tx(struct sock *sock,
888 struct rxrpc_call *rxcall,
889 unsigned long call_user_ID)
890{
891 struct afs_call *call = (struct afs_call *)call_user_ID;
892
98bf40cd 893 afs_set_call_state(call, AFS_CALL_SV_REPLYING, AFS_CALL_SV_AWAIT_ACK);
e833251a
DH
894}
895
08e0e7c8
DH
896/*
897 * send an empty reply
898 */
899void afs_send_empty_reply(struct afs_call *call)
900{
f044c884 901 struct afs_net *net = call->net;
08e0e7c8 902 struct msghdr msg;
08e0e7c8
DH
903
904 _enter("");
905
f044c884 906 rxrpc_kernel_set_tx_length(net->socket, call->rxcall, 0);
e754eba6 907
08e0e7c8
DH
908 msg.msg_name = NULL;
909 msg.msg_namelen = 0;
aa563d7b 910 iov_iter_kvec(&msg.msg_iter, WRITE, NULL, 0, 0);
08e0e7c8
DH
911 msg.msg_control = NULL;
912 msg.msg_controllen = 0;
913 msg.msg_flags = 0;
914
f044c884 915 switch (rxrpc_kernel_send_data(net->socket, call->rxcall, &msg, 0,
e833251a 916 afs_notify_end_reply_tx)) {
08e0e7c8
DH
917 case 0:
918 _leave(" [replied]");
919 return;
920
921 case -ENOMEM:
922 _debug("oom");
f044c884 923 rxrpc_kernel_abort_call(net->socket, call->rxcall,
3a92789a 924 RX_USER_ABORT, -ENOMEM, "KOO");
e690c9e3 925 /* Fall through */
08e0e7c8 926 default:
08e0e7c8
DH
927 _leave(" [error]");
928 return;
929 }
930}
931
b908fe6b
DH
932/*
933 * send a simple reply
934 */
935void afs_send_simple_reply(struct afs_call *call, const void *buf, size_t len)
936{
f044c884 937 struct afs_net *net = call->net;
b908fe6b 938 struct msghdr msg;
2e90b1c4 939 struct kvec iov[1];
bd6dc742 940 int n;
b908fe6b
DH
941
942 _enter("");
943
f044c884 944 rxrpc_kernel_set_tx_length(net->socket, call->rxcall, len);
e754eba6 945
b908fe6b
DH
946 iov[0].iov_base = (void *) buf;
947 iov[0].iov_len = len;
948 msg.msg_name = NULL;
949 msg.msg_namelen = 0;
aa563d7b 950 iov_iter_kvec(&msg.msg_iter, WRITE, iov, 1, len);
b908fe6b
DH
951 msg.msg_control = NULL;
952 msg.msg_controllen = 0;
953 msg.msg_flags = 0;
954
f044c884 955 n = rxrpc_kernel_send_data(net->socket, call->rxcall, &msg, len,
e833251a 956 afs_notify_end_reply_tx);
bd6dc742 957 if (n >= 0) {
6c67c7c3 958 /* Success */
b908fe6b
DH
959 _leave(" [replied]");
960 return;
bd6dc742 961 }
6c67c7c3 962
bd6dc742 963 if (n == -ENOMEM) {
b908fe6b 964 _debug("oom");
f044c884 965 rxrpc_kernel_abort_call(net->socket, call->rxcall,
3a92789a 966 RX_USER_ABORT, -ENOMEM, "KOO");
b908fe6b 967 }
bd6dc742 968 _leave(" [error]");
b908fe6b
DH
969}
970
08e0e7c8 971/*
372ee163 972 * Extract a piece of data from the received data socket buffers.
08e0e7c8 973 */
12bdcf33 974int afs_extract_data(struct afs_call *call, bool want_more)
08e0e7c8 975{
f044c884 976 struct afs_net *net = call->net;
12bdcf33 977 struct iov_iter *iter = call->_iter;
98bf40cd 978 enum afs_call_state state;
7888da95 979 u32 remote_abort = 0;
d001648e 980 int ret;
08e0e7c8 981
12bdcf33 982 _enter("{%s,%zu},%d", call->type->name, iov_iter_count(iter), want_more);
eb9950eb 983
12bdcf33 984 ret = rxrpc_kernel_recv_data(net->socket, call->rxcall, iter,
98bf40cd 985 want_more, &remote_abort,
a68f4a27 986 &call->service_id);
d001648e
DH
987 if (ret == 0 || ret == -EAGAIN)
988 return ret;
08e0e7c8 989
98bf40cd 990 state = READ_ONCE(call->state);
d001648e 991 if (ret == 1) {
98bf40cd
DH
992 switch (state) {
993 case AFS_CALL_CL_AWAIT_REPLY:
994 afs_set_call_state(call, state, AFS_CALL_CL_PROC_REPLY);
d001648e 995 break;
98bf40cd
DH
996 case AFS_CALL_SV_AWAIT_REQUEST:
997 afs_set_call_state(call, state, AFS_CALL_SV_REPLYING);
d001648e 998 break;
98bf40cd
DH
999 case AFS_CALL_COMPLETE:
1000 kdebug("prem complete %d", call->error);
f51375cd 1001 return afs_io_error(call, afs_io_error_extract);
d001648e
DH
1002 default:
1003 break;
1004 }
1005 return 0;
08e0e7c8 1006 }
d001648e 1007
98bf40cd 1008 afs_set_call_complete(call, ret, remote_abort);
d001648e 1009 return ret;
08e0e7c8 1010}
5f702c8e
DH
1011
1012/*
1013 * Log protocol error production.
1014 */
160cb957
DH
1015noinline int afs_protocol_error(struct afs_call *call, int error,
1016 enum afs_eproto_cause cause)
5f702c8e 1017{
160cb957 1018 trace_afs_protocol_error(call, error, cause);
5f702c8e
DH
1019 return error;
1020}