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