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