blob: bf7761fe6ef5c71774780f32f212505bee80b7bc [file] [log] [blame]
David Howells08e0e7c2007-04-26 15:55:03 -07001/* 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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010013#include <linux/sched/signal.h>
14
David Howells08e0e7c2007-04-26 15:55:03 -070015#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
David Howells8324f0b2016-08-30 09:49:29 +010021struct socket *afs_socket; /* my RxRPC socket */
David Howells08e0e7c2007-04-26 15:55:03 -070022static struct workqueue_struct *afs_async_calls;
David Howells00e90712016-09-08 11:10:12 +010023static struct afs_call *afs_spare_incoming_call;
David Howells341f7412017-01-05 10:38:36 +000024atomic_t afs_outstanding_calls;
David Howells08e0e7c2007-04-26 15:55:03 -070025
David Howellsd0016482016-08-30 20:42:14 +010026static void afs_wake_up_call_waiter(struct sock *, struct rxrpc_call *, unsigned long);
David Howells08e0e7c2007-04-26 15:55:03 -070027static int afs_wait_for_call_to_complete(struct afs_call *);
David Howellsd0016482016-08-30 20:42:14 +010028static void afs_wake_up_async_call(struct sock *, struct rxrpc_call *, unsigned long);
David Howellsd0016482016-08-30 20:42:14 +010029static void afs_process_async_call(struct work_struct *);
David Howells00e90712016-09-08 11:10:12 +010030static void afs_rx_new_call(struct sock *, struct rxrpc_call *, unsigned long);
31static void afs_rx_discard_new_call(struct rxrpc_call *, unsigned long);
David Howellsd0016482016-08-30 20:42:14 +010032static int afs_deliver_cm_op_id(struct afs_call *);
David Howells08e0e7c2007-04-26 15:55:03 -070033
David Howells08e0e7c2007-04-26 15:55:03 -070034/* asynchronous incoming call initial processing */
35static const struct afs_call_type afs_RXCMxxxx = {
David Howells00d3b7a2007-04-26 15:57:07 -070036 .name = "CB.xxxx",
David Howells08e0e7c2007-04-26 15:55:03 -070037 .deliver = afs_deliver_cm_op_id,
38 .abort_to_error = afs_abort_to_error,
39};
40
David Howells00e90712016-09-08 11:10:12 +010041static void afs_charge_preallocation(struct work_struct *);
David Howells08e0e7c2007-04-26 15:55:03 -070042
David Howells00e90712016-09-08 11:10:12 +010043static DECLARE_WORK(afs_charge_preallocation_work, afs_charge_preallocation);
David Howells08e0e7c2007-04-26 15:55:03 -070044
David Howells2f02f7a2016-04-07 17:23:03 +010045static int afs_wait_atomic_t(atomic_t *p)
46{
47 schedule();
48 return 0;
49}
50
David Howells08e0e7c2007-04-26 15:55:03 -070051/*
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
David Howells0e119b42016-06-10 22:30:37 +010063 ret = -ENOMEM;
Bhaktipriya Shridhar69ad0522016-09-04 20:53:42 +053064 afs_async_calls = alloc_workqueue("kafsd", WQ_MEM_RECLAIM, 0);
David Howells0e119b42016-06-10 22:30:37 +010065 if (!afs_async_calls)
66 goto error_0;
David Howells08e0e7c2007-04-26 15:55:03 -070067
Eric W. Biedermaneeb1bd52015-05-08 21:08:05 -050068 ret = sock_create_kern(&init_net, AF_RXRPC, SOCK_DGRAM, PF_INET, &socket);
David Howells0e119b42016-06-10 22:30:37 +010069 if (ret < 0)
70 goto error_1;
David Howells08e0e7c2007-04-26 15:55:03 -070071
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));
David Howells0e119b42016-06-10 22:30:37 +010085 if (ret < 0)
86 goto error_2;
87
David Howells00e90712016-09-08 11:10:12 +010088 rxrpc_kernel_new_call_notification(socket, afs_rx_new_call,
89 afs_rx_discard_new_call);
David Howellsd0016482016-08-30 20:42:14 +010090
David Howells0e119b42016-06-10 22:30:37 +010091 ret = kernel_listen(socket, INT_MAX);
92 if (ret < 0)
93 goto error_2;
David Howells08e0e7c2007-04-26 15:55:03 -070094
David Howells08e0e7c2007-04-26 15:55:03 -070095 afs_socket = socket;
David Howells00e90712016-09-08 11:10:12 +010096 afs_charge_preallocation(NULL);
David Howells08e0e7c2007-04-26 15:55:03 -070097 _leave(" = 0");
98 return 0;
David Howells0e119b42016-06-10 22:30:37 +010099
100error_2:
101 sock_release(socket);
102error_1:
103 destroy_workqueue(afs_async_calls);
104error_0:
105 _leave(" = %d", ret);
106 return ret;
David Howells08e0e7c2007-04-26 15:55:03 -0700107}
108
109/*
110 * close the RxRPC socket AFS was using
111 */
112void afs_close_socket(void)
113{
114 _enter("");
115
David Howells341f7412017-01-05 10:38:36 +0000116 kernel_listen(afs_socket, 0);
117 flush_workqueue(afs_async_calls);
118
David Howells00e90712016-09-08 11:10:12 +0100119 if (afs_spare_incoming_call) {
David Howells341f7412017-01-05 10:38:36 +0000120 afs_put_call(afs_spare_incoming_call);
David Howells00e90712016-09-08 11:10:12 +0100121 afs_spare_incoming_call = NULL;
122 }
123
David Howellsd0016482016-08-30 20:42:14 +0100124 _debug("outstanding %u", atomic_read(&afs_outstanding_calls));
David Howells2f02f7a2016-04-07 17:23:03 +0100125 wait_on_atomic_t(&afs_outstanding_calls, afs_wait_atomic_t,
126 TASK_UNINTERRUPTIBLE);
127 _debug("no outstanding calls");
128
David Howells248f2192016-09-08 11:10:12 +0100129 kernel_sock_shutdown(afs_socket, SHUT_RDWR);
130 flush_workqueue(afs_async_calls);
David Howells08e0e7c2007-04-26 15:55:03 -0700131 sock_release(afs_socket);
132
133 _debug("dework");
134 destroy_workqueue(afs_async_calls);
135 _leave("");
136}
137
138/*
David Howells341f7412017-01-05 10:38:36 +0000139 * Allocate a call.
David Howells00d3b7a2007-04-26 15:57:07 -0700140 */
David Howells341f7412017-01-05 10:38:36 +0000141static struct afs_call *afs_alloc_call(const struct afs_call_type *type,
142 gfp_t gfp)
David Howells00d3b7a2007-04-26 15:57:07 -0700143{
David Howells341f7412017-01-05 10:38:36 +0000144 struct afs_call *call;
145 int o;
David Howells00d3b7a2007-04-26 15:57:07 -0700146
David Howells341f7412017-01-05 10:38:36 +0000147 call = kzalloc(sizeof(*call), gfp);
148 if (!call)
149 return NULL;
David Howells00d3b7a2007-04-26 15:57:07 -0700150
David Howells341f7412017-01-05 10:38:36 +0000151 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);
David Howells2f02f7a2016-04-07 17:23:03 +0100155
David Howells341f7412017-01-05 10:38:36 +0000156 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;
David Howells00d3b7a2007-04-26 15:57:07 -0700160}
161
162/*
David Howells341f7412017-01-05 10:38:36 +0000163 * Dispose of a reference on a call.
David Howells6c67c7c2014-05-21 14:48:05 +0100164 */
David Howells341f7412017-01-05 10:38:36 +0000165void afs_put_call(struct afs_call *call)
David Howells6c67c7c2014-05-21 14:48:05 +0100166{
David Howells341f7412017-01-05 10:38:36 +0000167 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);
David Howells6c67c7c2014-05-21 14:48:05 +0100193 }
Nathaniel Wesley Filardo6cf12862014-05-21 16:04:11 +0100194}
195
196/*
David Howells341f7412017-01-05 10:38:36 +0000197 * Queue the call for actual work. Returns 0 unconditionally for convenience.
Nathaniel Wesley Filardo6cf12862014-05-21 16:04:11 +0100198 */
David Howells341f7412017-01-05 10:38:36 +0000199int afs_queue_call_work(struct afs_call *call)
Nathaniel Wesley Filardo6cf12862014-05-21 16:04:11 +0100200{
David Howells341f7412017-01-05 10:38:36 +0000201 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;
David Howells6c67c7c2014-05-21 14:48:05 +0100212}
213
214/*
David Howells08e0e7c2007-04-26 15:55:03 -0700215 * allocate a call with flat request and reply buffers
216 */
217struct afs_call *afs_alloc_flat_call(const struct afs_call_type *type,
David Howellsd0016482016-08-30 20:42:14 +0100218 size_t request_size, size_t reply_max)
David Howells08e0e7c2007-04-26 15:55:03 -0700219{
220 struct afs_call *call;
221
David Howells341f7412017-01-05 10:38:36 +0000222 call = afs_alloc_call(type, GFP_NOFS);
David Howells08e0e7c2007-04-26 15:55:03 -0700223 if (!call)
224 goto nomem_call;
225
David Howells00d3b7a2007-04-26 15:57:07 -0700226 if (request_size) {
David Howells341f7412017-01-05 10:38:36 +0000227 call->request_size = request_size;
David Howells00d3b7a2007-04-26 15:57:07 -0700228 call->request = kmalloc(request_size, GFP_NOFS);
229 if (!call->request)
230 goto nomem_free;
231 }
232
David Howellsd0016482016-08-30 20:42:14 +0100233 if (reply_max) {
David Howells341f7412017-01-05 10:38:36 +0000234 call->reply_max = reply_max;
David Howellsd0016482016-08-30 20:42:14 +0100235 call->buffer = kmalloc(reply_max, GFP_NOFS);
David Howells00d3b7a2007-04-26 15:57:07 -0700236 if (!call->buffer)
237 goto nomem_free;
238 }
239
David Howells08e0e7c2007-04-26 15:55:03 -0700240 init_waitqueue_head(&call->waitq);
David Howells08e0e7c2007-04-26 15:55:03 -0700241 return call;
242
David Howells00d3b7a2007-04-26 15:57:07 -0700243nomem_free:
David Howells341f7412017-01-05 10:38:36 +0000244 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700245nomem_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
David Howells2f5705a2017-03-16 16:27:46 +0000262#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
David Howells08e0e7c2007-04-26 15:55:03 -0700295/*
David Howells31143d52007-05-09 02:33:46 -0700296 * attach the data from a bunch of pages on an inode to a call
297 */
Al Viro39c6ace2016-01-09 20:36:51 -0500298static int afs_send_pages(struct afs_call *call, struct msghdr *msg)
David Howells31143d52007-05-09 02:33:46 -0700299{
David Howells2f5705a2017-03-16 16:27:46 +0000300 struct bio_vec bv[AFS_BVEC_MAX];
301 unsigned int bytes, nr, loop, offset;
David Howells31143d52007-05-09 02:33:46 -0700302 pgoff_t first = call->first, last = call->last;
303 int ret;
304
David Howells31143d52007-05-09 02:33:46 -0700305 offset = call->first_offset;
306 call->first_offset = 0;
307
308 do {
David Howells2f5705a2017-03-16 16:27:46 +0000309 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;
David Howells31143d52007-05-09 02:33:46 -0700313
David Howells2f5705a2017-03-16 16:27:46 +0000314 /* 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);
David Howells31143d52007-05-09 02:33:46 -0700324 if (ret < 0)
325 break;
David Howells2f5705a2017-03-16 16:27:46 +0000326
327 first += nr;
David Howells5bbf5d32007-05-10 03:15:23 -0700328 } while (first <= last);
David Howells31143d52007-05-09 02:33:46 -0700329
David Howells31143d52007-05-09 02:33:46 -0700330 return ret;
331}
332
333/*
David Howells08e0e7c2007-04-26 15:55:03 -0700334 * initiate a call
335 */
336int afs_make_call(struct in_addr *addr, struct afs_call *call, gfp_t gfp,
David Howells56ff9c82017-01-05 10:38:36 +0000337 bool async)
David Howells08e0e7c2007-04-26 15:55:03 -0700338{
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
David Howells00d3b7a2007-04-26 15:57:07 -0700347 ASSERT(call->type != NULL);
348 ASSERT(call->type->name != NULL);
349
David Howells31143d52007-05-09 02:33:46 -0700350 _debug("____MAKE %p{%s,%x} [%d]____",
351 call, call->type->name, key_serial(call->key),
352 atomic_read(&afs_outstanding_calls));
David Howells00d3b7a2007-04-26 15:57:07 -0700353
David Howells56ff9c82017-01-05 10:38:36 +0000354 call->async = async;
David Howells08e0e7c2007-04-26 15:55:03 -0700355
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,
David Howellsd0016482016-08-30 20:42:14 +0100367 (unsigned long) call, gfp,
David Howells56ff9c82017-01-05 10:38:36 +0000368 (async ?
369 afs_wake_up_async_call :
370 afs_wake_up_call_waiter));
David Howells00d3b7a2007-04-26 15:57:07 -0700371 call->key = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700372 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;
Al Viro2e90b1c2014-11-27 21:50:31 -0500385 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1,
Al Viroc0371da2014-11-24 10:42:55 -0500386 call->request_size);
David Howells08e0e7c2007-04-26 15:55:03 -0700387 msg.msg_control = NULL;
388 msg.msg_controllen = 0;
David Howells31143d52007-05-09 02:33:46 -0700389 msg.msg_flags = (call->send_pages ? MSG_MORE : 0);
David Howells08e0e7c2007-04-26 15:55:03 -0700390
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 */
David Howells31143d52007-05-09 02:33:46 -0700394 if (!call->send_pages)
395 call->state = AFS_CALL_AWAIT_REPLY;
David Howells4de48af2016-08-30 12:00:48 +0100396 ret = rxrpc_kernel_send_data(afs_socket, rxcall,
397 &msg, call->request_size);
David Howells08e0e7c2007-04-26 15:55:03 -0700398 if (ret < 0)
399 goto error_do_abort;
400
David Howells31143d52007-05-09 02:33:46 -0700401 if (call->send_pages) {
Al Viro39c6ace2016-01-09 20:36:51 -0500402 ret = afs_send_pages(call, &msg);
David Howells31143d52007-05-09 02:33:46 -0700403 if (ret < 0)
404 goto error_do_abort;
405 }
406
David Howells08e0e7c2007-04-26 15:55:03 -0700407 /* at this point, an async call may no longer exist as it may have
408 * already completed */
David Howells56ff9c82017-01-05 10:38:36 +0000409 if (call->async)
410 return -EINPROGRESS;
411
412 return afs_wait_for_call_to_complete(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700413
414error_do_abort:
David Howells5a429762016-09-06 22:19:51 +0100415 rxrpc_kernel_abort_call(afs_socket, rxcall, RX_USER_ABORT, -ret, "KSD");
David Howells08e0e7c2007-04-26 15:55:03 -0700416error_kill_call:
David Howells341f7412017-01-05 10:38:36 +0000417 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700418 _leave(" = %d", ret);
419 return ret;
420}
421
422/*
David Howells08e0e7c2007-04-26 15:55:03 -0700423 * deliver messages to a call
424 */
425static void afs_deliver_to_call(struct afs_call *call)
426{
David Howells08e0e7c2007-04-26 15:55:03 -0700427 u32 abort_code;
428 int ret;
429
David Howellsd0016482016-08-30 20:42:14 +0100430 _enter("%s", call->type->name);
David Howells08e0e7c2007-04-26 15:55:03 -0700431
David Howellsd0016482016-08-30 20:42:14 +0100432 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);
David Howells8e8d7f12017-01-05 10:38:34 +0000442 trace_afs_recv_data(call, 0, offset, false, ret);
443
David Howellsd0016482016-08-30 20:42:14 +0100444 if (ret == -EINPROGRESS || ret == -EAGAIN)
445 return;
David Howells9008f992016-10-06 08:11:50 +0100446 if (ret == 1 || ret < 0) {
David Howellsd0016482016-08-30 20:42:14 +0100447 call->state = AFS_CALL_COMPLETE;
448 goto done;
David Howells08e0e7c2007-04-26 15:55:03 -0700449 }
David Howellsd0016482016-08-30 20:42:14 +0100450 return;
David Howells08e0e7c2007-04-26 15:55:03 -0700451 }
452
David Howellsd0016482016-08-30 20:42:14 +0100453 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,
David Howells5a429762016-09-06 22:19:51 +0100465 abort_code, -ret, "KNC");
David Howellsd0016482016-08-30 20:42:14 +0100466 goto do_abort;
467 case -ENOTSUPP:
David Howells1157f152017-03-16 16:27:47 +0000468 abort_code = RXGEN_OPCODE;
David Howellsd0016482016-08-30 20:42:14 +0100469 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
David Howells5a429762016-09-06 22:19:51 +0100470 abort_code, -ret, "KIV");
David Howellsd0016482016-08-30 20:42:14 +0100471 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,
David Howells5a429762016-09-06 22:19:51 +0100480 abort_code, EBADMSG, "KUM");
David Howellsd0016482016-08-30 20:42:14 +0100481 goto do_abort;
482 }
David Howells08e0e7c2007-04-26 15:55:03 -0700483 }
484
David Howellsd0016482016-08-30 20:42:14 +0100485done:
486 if (call->state == AFS_CALL_COMPLETE && call->incoming)
David Howells341f7412017-01-05 10:38:36 +0000487 afs_put_call(call);
David Howellsd0016482016-08-30 20:42:14 +0100488out:
David Howells08e0e7c2007-04-26 15:55:03 -0700489 _leave("");
David Howellsd0016482016-08-30 20:42:14 +0100490 return;
491
492do_abort:
493 call->error = ret;
494 call->state = AFS_CALL_COMPLETE;
495 goto done;
David Howells08e0e7c2007-04-26 15:55:03 -0700496}
497
498/*
499 * wait synchronously for a call to complete
500 */
501static int afs_wait_for_call_to_complete(struct afs_call *call)
502{
David Howells5a429762016-09-06 22:19:51 +0100503 const char *abort_why;
David Howells08e0e7c2007-04-26 15:55:03 -0700504 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 */
David Howellsd0016482016-08-30 20:42:14 +0100515 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
516 call->need_attention = false;
David Howells08e0e7c2007-04-26 15:55:03 -0700517 __set_current_state(TASK_RUNNING);
518 afs_deliver_to_call(call);
519 continue;
520 }
521
David Howells5a429762016-09-06 22:19:51 +0100522 abort_why = "KWC";
David Howells08e0e7c2007-04-26 15:55:03 -0700523 ret = call->error;
David Howellsd0016482016-08-30 20:42:14 +0100524 if (call->state == AFS_CALL_COMPLETE)
David Howells08e0e7c2007-04-26 15:55:03 -0700525 break;
David Howells5a429762016-09-06 22:19:51 +0100526 abort_why = "KWI";
David Howells08e0e7c2007-04-26 15:55:03 -0700527 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");
David Howellsd0016482016-08-30 20:42:14 +0100539 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
David Howells5a429762016-09-06 22:19:51 +0100540 RX_CALL_DEAD, -ret, abort_why);
David Howells08e0e7c2007-04-26 15:55:03 -0700541 }
542
543 _debug("call complete");
David Howells341f7412017-01-05 10:38:36 +0000544 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700545 _leave(" = %d", ret);
546 return ret;
547}
548
549/*
550 * wake up a waiting call
551 */
David Howellsd0016482016-08-30 20:42:14 +0100552static void afs_wake_up_call_waiter(struct sock *sk, struct rxrpc_call *rxcall,
553 unsigned long call_user_ID)
David Howells08e0e7c2007-04-26 15:55:03 -0700554{
David Howellsd0016482016-08-30 20:42:14 +0100555 struct afs_call *call = (struct afs_call *)call_user_ID;
556
557 call->need_attention = true;
David Howells08e0e7c2007-04-26 15:55:03 -0700558 wake_up(&call->waitq);
559}
560
561/*
562 * wake up an asynchronous call
563 */
David Howellsd0016482016-08-30 20:42:14 +0100564static void afs_wake_up_async_call(struct sock *sk, struct rxrpc_call *rxcall,
565 unsigned long call_user_ID)
David Howells08e0e7c2007-04-26 15:55:03 -0700566{
David Howellsd0016482016-08-30 20:42:14 +0100567 struct afs_call *call = (struct afs_call *)call_user_ID;
David Howells341f7412017-01-05 10:38:36 +0000568 int u;
David Howellsd0016482016-08-30 20:42:14 +0100569
David Howells8e8d7f12017-01-05 10:38:34 +0000570 trace_afs_notify_call(rxcall, call);
David Howellsd0016482016-08-30 20:42:14 +0100571 call->need_attention = true;
David Howells341f7412017-01-05 10:38:36 +0000572
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 }
David Howells08e0e7c2007-04-26 15:55:03 -0700582}
583
584/*
David Howells341f7412017-01-05 10:38:36 +0000585 * Delete an asynchronous call. The work item carries a ref to the call struct
586 * that we need to release.
David Howells08e0e7c2007-04-26 15:55:03 -0700587 */
David Howellsd0016482016-08-30 20:42:14 +0100588static void afs_delete_async_call(struct work_struct *work)
David Howells08e0e7c2007-04-26 15:55:03 -0700589{
David Howellsd0016482016-08-30 20:42:14 +0100590 struct afs_call *call = container_of(work, struct afs_call, async_work);
591
David Howells08e0e7c2007-04-26 15:55:03 -0700592 _enter("");
593
David Howells341f7412017-01-05 10:38:36 +0000594 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700595
596 _leave("");
597}
598
599/*
David Howells341f7412017-01-05 10:38:36 +0000600 * 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.
David Howells08e0e7c2007-04-26 15:55:03 -0700602 */
David Howellsd0016482016-08-30 20:42:14 +0100603static void afs_process_async_call(struct work_struct *work)
David Howells08e0e7c2007-04-26 15:55:03 -0700604{
David Howellsd0016482016-08-30 20:42:14 +0100605 struct afs_call *call = container_of(work, struct afs_call, async_work);
606
David Howells08e0e7c2007-04-26 15:55:03 -0700607 _enter("");
608
David Howellsd0016482016-08-30 20:42:14 +0100609 if (call->state < AFS_CALL_COMPLETE && call->need_attention) {
610 call->need_attention = false;
David Howells08e0e7c2007-04-26 15:55:03 -0700611 afs_deliver_to_call(call);
David Howellsd0016482016-08-30 20:42:14 +0100612 }
David Howells08e0e7c2007-04-26 15:55:03 -0700613
David Howells56ff9c82017-01-05 10:38:36 +0000614 if (call->state == AFS_CALL_COMPLETE) {
David Howells08e0e7c2007-04-26 15:55:03 -0700615 call->reply = NULL;
616
David Howells341f7412017-01-05 10:38:36 +0000617 /* 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 */
David Howellsd0016482016-08-30 20:42:14 +0100621 call->async_work.func = afs_delete_async_call;
David Howells341f7412017-01-05 10:38:36 +0000622 if (!queue_work(afs_async_calls, &call->async_work))
623 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700624 }
625
David Howells341f7412017-01-05 10:38:36 +0000626 afs_put_call(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700627 _leave("");
628}
629
David Howells00e90712016-09-08 11:10:12 +0100630static 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) {
David Howells341f7412017-01-05 10:38:36 +0000646 call = afs_alloc_call(&afs_RXCMxxxx, GFP_KERNEL);
David Howells00e90712016-09-08 11:10:12 +0100647 if (!call)
648 break;
649
David Howells56ff9c82017-01-05 10:38:36 +0000650 call->async = true;
David Howells00e90712016-09-08 11:10:12 +0100651 call->state = AFS_CALL_AWAIT_OP_ID;
David Howells56ff9c82017-01-05 10:38:36 +0000652 init_waitqueue_head(&call->waitq);
David Howells00e90712016-09-08 11:10:12 +0100653 }
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
David Howells00e90712016-09-08 11:10:12 +0100674 call->rxcall = NULL;
David Howells341f7412017-01-05 10:38:36 +0000675 afs_put_call(call);
David Howells00e90712016-09-08 11:10:12 +0100676}
677
David Howells08e0e7c2007-04-26 15:55:03 -0700678/*
David Howellsd0016482016-08-30 20:42:14 +0100679 * Notification of an incoming call.
680 */
David Howells00e90712016-09-08 11:10:12 +0100681static void afs_rx_new_call(struct sock *sk, struct rxrpc_call *rxcall,
682 unsigned long user_call_ID)
David Howellsd0016482016-08-30 20:42:14 +0100683{
David Howells00e90712016-09-08 11:10:12 +0100684 queue_work(afs_wq, &afs_charge_preallocation_work);
David Howellsd0016482016-08-30 20:42:14 +0100685}
686
687/*
David Howells372ee162016-08-03 14:11:40 +0100688 * 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.
David Howells08e0e7c2007-04-26 15:55:03 -0700690 */
David Howellsd0016482016-08-30 20:42:14 +0100691static int afs_deliver_cm_op_id(struct afs_call *call)
David Howells08e0e7c2007-04-26 15:55:03 -0700692{
David Howellsd0016482016-08-30 20:42:14 +0100693 int ret;
David Howells08e0e7c2007-04-26 15:55:03 -0700694
David Howellsd0016482016-08-30 20:42:14 +0100695 _enter("{%zu}", call->offset);
David Howells08e0e7c2007-04-26 15:55:03 -0700696
697 ASSERTCMP(call->offset, <, 4);
698
699 /* the operation ID forms the first four bytes of the request data */
David Howells50a2c952016-10-13 08:27:10 +0100700 ret = afs_extract_data(call, &call->tmp, 4, true);
David Howellsd0016482016-08-30 20:42:14 +0100701 if (ret < 0)
702 return ret;
David Howells08e0e7c2007-04-26 15:55:03 -0700703
David Howells50a2c952016-10-13 08:27:10 +0100704 call->operation_ID = ntohl(call->tmp);
David Howells08e0e7c2007-04-26 15:55:03 -0700705 call->state = AFS_CALL_AWAIT_REQUEST;
David Howellsd0016482016-08-30 20:42:14 +0100706 call->offset = 0;
David Howells08e0e7c2007-04-26 15:55:03 -0700707
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
David Howells8e8d7f12017-01-05 10:38:34 +0000713 trace_afs_cb_call(call);
714
David Howells08e0e7c2007-04-26 15:55:03 -0700715 /* pass responsibility for the remainer of this message off to the
716 * cache manager op */
David Howellsd0016482016-08-30 20:42:14 +0100717 return call->type->deliver(call);
David Howells08e0e7c2007-04-26 15:55:03 -0700718}
719
720/*
721 * send an empty reply
722 */
723void afs_send_empty_reply(struct afs_call *call)
724{
725 struct msghdr msg;
David Howells08e0e7c2007-04-26 15:55:03 -0700726
727 _enter("");
728
David Howells08e0e7c2007-04-26 15:55:03 -0700729 msg.msg_name = NULL;
730 msg.msg_namelen = 0;
David Howellsbfd4e952015-04-01 16:03:46 +0100731 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, NULL, 0, 0);
David Howells08e0e7c2007-04-26 15:55:03 -0700732 msg.msg_control = NULL;
733 msg.msg_controllen = 0;
734 msg.msg_flags = 0;
735
736 call->state = AFS_CALL_AWAIT_ACK;
David Howells4de48af2016-08-30 12:00:48 +0100737 switch (rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, 0)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700738 case 0:
739 _leave(" [replied]");
740 return;
741
742 case -ENOMEM:
743 _debug("oom");
David Howells4de48af2016-08-30 12:00:48 +0100744 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
David Howells5a429762016-09-06 22:19:51 +0100745 RX_USER_ABORT, ENOMEM, "KOO");
David Howells08e0e7c2007-04-26 15:55:03 -0700746 default:
David Howells08e0e7c2007-04-26 15:55:03 -0700747 _leave(" [error]");
748 return;
749 }
750}
751
752/*
David Howellsb908fe62007-04-26 15:58:17 -0700753 * 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;
Al Viro2e90b1c2014-11-27 21:50:31 -0500758 struct kvec iov[1];
David Howellsbd6dc742007-07-20 10:59:41 +0100759 int n;
David Howellsb908fe62007-04-26 15:58:17 -0700760
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;
Al Viro2e90b1c2014-11-27 21:50:31 -0500767 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iov, 1, len);
David Howellsb908fe62007-04-26 15:58:17 -0700768 msg.msg_control = NULL;
769 msg.msg_controllen = 0;
770 msg.msg_flags = 0;
771
772 call->state = AFS_CALL_AWAIT_ACK;
David Howells4de48af2016-08-30 12:00:48 +0100773 n = rxrpc_kernel_send_data(afs_socket, call->rxcall, &msg, len);
David Howellsbd6dc742007-07-20 10:59:41 +0100774 if (n >= 0) {
David Howells6c67c7c2014-05-21 14:48:05 +0100775 /* Success */
David Howellsb908fe62007-04-26 15:58:17 -0700776 _leave(" [replied]");
777 return;
David Howellsbd6dc742007-07-20 10:59:41 +0100778 }
David Howells6c67c7c2014-05-21 14:48:05 +0100779
David Howellsbd6dc742007-07-20 10:59:41 +0100780 if (n == -ENOMEM) {
David Howellsb908fe62007-04-26 15:58:17 -0700781 _debug("oom");
David Howells4de48af2016-08-30 12:00:48 +0100782 rxrpc_kernel_abort_call(afs_socket, call->rxcall,
David Howells5a429762016-09-06 22:19:51 +0100783 RX_USER_ABORT, ENOMEM, "KOO");
David Howellsb908fe62007-04-26 15:58:17 -0700784 }
David Howellsbd6dc742007-07-20 10:59:41 +0100785 _leave(" [error]");
David Howellsb908fe62007-04-26 15:58:17 -0700786}
787
788/*
David Howells372ee162016-08-03 14:11:40 +0100789 * Extract a piece of data from the received data socket buffers.
David Howells08e0e7c2007-04-26 15:55:03 -0700790 */
David Howellsd0016482016-08-30 20:42:14 +0100791int afs_extract_data(struct afs_call *call, void *buf, size_t count,
792 bool want_more)
David Howells08e0e7c2007-04-26 15:55:03 -0700793{
David Howellsd0016482016-08-30 20:42:14 +0100794 int ret;
David Howells08e0e7c2007-04-26 15:55:03 -0700795
David Howellsd0016482016-08-30 20:42:14 +0100796 _enter("{%s,%zu},,%zu,%d",
797 call->type->name, call->offset, count, want_more);
David Howells08e0e7c2007-04-26 15:55:03 -0700798
David Howellsd0016482016-08-30 20:42:14 +0100799 ASSERTCMP(call->offset, <=, count);
David Howells08e0e7c2007-04-26 15:55:03 -0700800
David Howellsd0016482016-08-30 20:42:14 +0100801 ret = rxrpc_kernel_recv_data(afs_socket, call->rxcall,
802 buf, count, &call->offset,
803 want_more, &call->abort_code);
David Howells8e8d7f12017-01-05 10:38:34 +0000804 trace_afs_recv_data(call, count, call->offset, want_more, ret);
David Howellsd0016482016-08-30 20:42:14 +0100805 if (ret == 0 || ret == -EAGAIN)
806 return ret;
David Howells08e0e7c2007-04-26 15:55:03 -0700807
David Howellsd0016482016-08-30 20:42:14 +0100808 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;
David Howells08e0e7c2007-04-26 15:55:03 -0700820 }
David Howellsd0016482016-08-30 20:42:14 +0100821
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;
David Howells08e0e7c2007-04-26 15:55:03 -0700828}